pub trait EndpointOut: Endpoint {
    // Required method
    async fn read(&mut self, buf: &mut [u8]) -> Result<usize, EndpointError>;
}Expand description
OUT Endpoint trait.
Required Methods§
Object Safety§
This trait is not object safe.
pub trait EndpointOut: Endpoint {
    // Required method
    async fn read(&mut self, buf: &mut [u8]) -> Result<usize, EndpointError>;
}OUT Endpoint trait.