pub trait SendHandleProtocolProxyInterface: Send + Sync {
    // Required methods
    fn send_handle_reduced_rights(&self, h: Event) -> Result<(), Error>;
    fn send_handle_same_rights(&self, h: Event) -> Result<(), Error>;
}

Required Methods§

Implementors§