pub trait ExampleProxyInterface: Send + Sync {
// Required methods
fn existing_method(&self) -> Result<(), Error>;
fn new_method(&self) -> Result<(), Error>;
}
pub trait ExampleProxyInterface: Send + Sync {
// Required methods
fn existing_method(&self) -> Result<(), Error>;
fn new_method(&self) -> Result<(), Error>;
}