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

Required Methods§

Implementors§