pub trait IRpcProxyBuffer_Impl: Sized {
    // Required methods
    fn Connect(
        &self,
        prpcchannelbuffer: Option<&IRpcChannelBuffer>
    ) -> Result<()>;
    fn Disconnect(&self);
}

Required Methods§

fn Connect(&self, prpcchannelbuffer: Option<&IRpcChannelBuffer>) -> Result<()>

fn Disconnect(&self)

Object Safety§

This trait is not object safe.

Implementors§