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