Skip to main content

CotpReader

Trait CotpReader 

Source
pub trait CotpReader: Send {
    // Required method
    fn recv(
        &mut self,
    ) -> impl Future<Output = Result<CotpRecvResult, CotpError>> + Send;
}

Required Methods§

Source

fn recv( &mut self, ) -> impl Future<Output = Result<CotpRecvResult, CotpError>> + Send

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§