#[repr(C, align(8))]pub struct Usbc<'a> { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl<'a> UsbController<'a> for Usbc<'a>
impl<'a> UsbController<'a> for Usbc<'a>
fn set_client(&self, client: &'a dyn Client<'a>)
fn endpoint_set_ctrl_buffer(&self, buf: &'a [VolatileCell<u8>])
fn endpoint_set_in_buffer(&self, endpoint: usize, buf: &'a [VolatileCell<u8>])
fn endpoint_set_out_buffer(&self, endpoint: usize, buf: &'a [VolatileCell<u8>])
fn enable_as_device(&self, speed: DeviceSpeed)
fn attach(&self)
fn detach(&self)
fn set_address(&self, addr: u16)
fn enable_address(&self)
fn endpoint_in_enable(&self, transfer_type: TransferType, endpoint: usize)
fn endpoint_out_enable(&self, transfer_type: TransferType, endpoint: usize)
fn endpoint_in_out_enable(&self, _transfer_type: TransferType, _endpoint: usize)
fn endpoint_resume_in(&self, endpoint: usize)
fn endpoint_resume_out(&self, endpoint: usize)
Auto Trait Implementations§
impl<'a> !Freeze for Usbc<'a>
impl<'a> !RefUnwindSafe for Usbc<'a>
impl<'a> !Send for Usbc<'a>
impl<'a> !Sync for Usbc<'a>
impl<'a> Unpin for Usbc<'a>
impl<'a> !UnwindSafe for Usbc<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more