pub trait ProtocolProxyInterface: Send + Sync {
    // Required method
    fn foo(&self) -> Result<(), Error>;
}

Required Methods§

source

fn foo(&self) -> Result<(), Error>

Implementors§