embassy-usb-synopsys-otg

Crates

git

Versions

default

Flavors

Skip to main content

Doepctl

Struct Doepctl 

Source
#[repr(transparent)]
pub struct Doepctl(pub u32);
Expand description

Device endpoint control register

Tuple Fields§

§0: u32

Implementations§

Source§

impl Doepctl

Source

pub const fn mpsiz(&self) -> u16

MPSIZ

Source

pub fn set_mpsiz(&mut self, val: u16)

MPSIZ

Source

pub const fn usbaep(&self) -> bool

USBAEP

Source

pub fn set_usbaep(&mut self, val: bool)

USBAEP

Source

pub const fn eonum_dpid(&self) -> bool

EONUM/DPID

Source

pub fn set_eonum_dpid(&mut self, val: bool)

EONUM/DPID

Source

pub const fn naksts(&self) -> bool

NAKSTS

Source

pub fn set_naksts(&mut self, val: bool)

NAKSTS

Source

pub const fn eptyp(&self) -> Eptyp

EPTYP

Source

pub fn set_eptyp(&mut self, val: Eptyp)

EPTYP

Source

pub const fn snpm(&self) -> bool

SNPM

Source

pub fn set_snpm(&mut self, val: bool)

SNPM

Source

pub const fn stall(&self) -> bool

STALL

Source

pub fn set_stall(&mut self, val: bool)

STALL

Source

pub const fn cnak(&self) -> bool

CNAK

Source

pub fn set_cnak(&mut self, val: bool)

CNAK

Source

pub const fn snak(&self) -> bool

SNAK

Source

pub fn set_snak(&mut self, val: bool)

SNAK

Source

pub const fn sd0pid_sevnfrm(&self) -> bool

SD0PID/SEVNFRM

Source

pub fn set_sd0pid_sevnfrm(&mut self, val: bool)

SD0PID/SEVNFRM

Source

pub const fn soddfrm(&self) -> bool

SODDFRM

Source

pub fn set_soddfrm(&mut self, val: bool)

SODDFRM

Source

pub const fn epdis(&self) -> bool

EPDIS

Source

pub fn set_epdis(&mut self, val: bool)

EPDIS

Source

pub const fn epena(&self) -> bool

EPENA

Source

pub fn set_epena(&mut self, val: bool)

EPENA

Trait Implementations§

Source§

impl Clone for Doepctl

Source§

fn clone(&self) -> Doepctl

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Doepctl

Source§

impl Default for Doepctl

Source§

fn default() -> Doepctl

Returns the “default value” for a type. Read more
Source§

impl Eq for Doepctl

Source§

impl PartialEq for Doepctl

Source§

fn eq(&self, other: &Doepctl) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Doepctl

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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>,

Source§

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.