Struct rp2040_pac2::usb::regs::MainCtrl[][src]

#[repr(transparent)]pub struct MainCtrl(pub u32);

Main control register

Implementations

impl MainCtrl[src]

pub const fn sim_timing(&self) -> bool[src]

Reduced timings for simulation

pub fn set_sim_timing(&mut self, val: bool)[src]

Reduced timings for simulation

pub const fn host_ndevice(&self) -> bool[src]

Device mode = 0, Host mode = 1

pub fn set_host_ndevice(&mut self, val: bool)[src]

Device mode = 0, Host mode = 1

pub const fn controller_en(&self) -> bool[src]

Enable controller

pub fn set_controller_en(&mut self, val: bool)[src]

Enable controller

Trait Implementations

impl Clone for MainCtrl[src]

impl Copy for MainCtrl[src]

impl Default for MainCtrl[src]

Auto Trait Implementations

impl Send for MainCtrl

impl Sync for MainCtrl

impl Unpin for MainCtrl

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.