ariel_os::reexports::embassy_usb::driver

Trait Endpoint

pub trait Endpoint {
    // Required methods
    fn info(&self) -> &EndpointInfo;
    async fn wait_enabled(&mut self);
}
Expand description

Endpoint trait, common for OUT and IN.

Required Methods§

fn info(&self) -> &EndpointInfo

Get the endpoint address

async fn wait_enabled(&mut self)

Wait for the endpoint to be enabled.

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§