Struct nrf52840::usbd::Usbd

source ·
pub struct Usbd<'a> { /* private fields */ }

Implementations§

source§

impl<'a> Usbd<'a>

source

pub const fn new() -> Usbd<'a>

source

pub fn set_power_ref(&self, power: &'a Power<'a>)

source

pub fn get_state(&self) -> UsbState

source

pub fn enable_lowpower(&self)

source

pub fn disable_lowpower(&self)

source

pub fn handle_interrupt(&self)

Trait Implementations§

source§

impl<'a> PowerClient for Usbd<'a>

source§

impl<'a> UsbController<'a> for Usbd<'a>

source§

fn set_client(&self, client: &'a dyn Client<'a>)

source§

fn endpoint_set_ctrl_buffer(&self, buf: &'a [VolatileCell<u8>])

source§

fn endpoint_set_in_buffer(&self, endpoint: usize, buf: &'a [VolatileCell<u8>])

source§

fn endpoint_set_out_buffer(&self, endpoint: usize, buf: &'a [VolatileCell<u8>])

source§

fn enable_as_device(&self, speed: DeviceSpeed)

source§

fn attach(&self)

source§

fn detach(&self)

source§

fn set_address(&self, _addr: u16)

source§

fn enable_address(&self)

source§

fn endpoint_in_enable(&self, transfer_type: TransferType, endpoint: usize)

source§

fn endpoint_out_enable(&self, transfer_type: TransferType, endpoint: usize)

source§

fn endpoint_in_out_enable(&self, transfer_type: TransferType, endpoint: usize)

source§

fn endpoint_resume_in(&self, endpoint: usize)

source§

fn endpoint_resume_out(&self, endpoint: usize)

Auto Trait Implementations§

§

impl<'a> !Freeze for Usbd<'a>

§

impl<'a> !RefUnwindSafe for Usbd<'a>

§

impl<'a> !Send for Usbd<'a>

§

impl<'a> !Sync for Usbd<'a>

§

impl<'a> Unpin for Usbd<'a>

§

impl<'a> !UnwindSafe for Usbd<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> SizedTypeProperties for T

source§

#[doc(hidden)] const IS_ZST: bool = _

🔬This is a nightly-only experimental API. (sized_type_properties)
true if this type requires no storage. false if its size is greater than zero. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.