nxp-pac

Crates

git

Versions

mimxrt685s_cm33

Flavors

IntSignalEn

Struct IntSignalEn 

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

Interrupt Signal Enable

Tuple Fields§

§0: u32

Implementations§

Source§

impl IntSignalEn

Source

pub const fn ccien(&self) -> Ccien

Command Complete Interrupt Enable

Source

pub const fn set_ccien(&mut self, val: Ccien)

Command Complete Interrupt Enable

Source

pub const fn tcien(&self) -> Tcien

Transfer Complete Interrupt Enable

Source

pub const fn set_tcien(&mut self, val: Tcien)

Transfer Complete Interrupt Enable

Source

pub const fn bgeien(&self) -> Bgeien

Block Gap Event Interrupt Enable

Source

pub const fn set_bgeien(&mut self, val: Bgeien)

Block Gap Event Interrupt Enable

Source

pub const fn dintien(&self) -> Dintien

DMA Interrupt Enable

Source

pub const fn set_dintien(&mut self, val: Dintien)

DMA Interrupt Enable

Source

pub const fn bwrien(&self) -> Bwrien

Buffer Write Ready Interrupt Enable

Source

pub const fn set_bwrien(&mut self, val: Bwrien)

Buffer Write Ready Interrupt Enable

Source

pub const fn brrien(&self) -> Brrien

Buffer Read Ready Interrupt Enable

Source

pub const fn set_brrien(&mut self, val: Brrien)

Buffer Read Ready Interrupt Enable

Source

pub const fn cinsien(&self) -> Cinsien

Card Insertion Interrupt Enable

Source

pub const fn set_cinsien(&mut self, val: Cinsien)

Card Insertion Interrupt Enable

Source

pub const fn crmien(&self) -> Crmien

Card Removal Interrupt Enable

Source

pub const fn set_crmien(&mut self, val: Crmien)

Card Removal Interrupt Enable

Source

pub const fn cintien(&self) -> Cintien

Card Interrupt Interrupt Enable

Source

pub const fn set_cintien(&mut self, val: Cintien)

Card Interrupt Interrupt Enable

Source

pub const fn rteien(&self) -> Rteien

Re-Tuning Event Interrupt Enable

Source

pub const fn set_rteien(&mut self, val: Rteien)

Re-Tuning Event Interrupt Enable

Source

pub const fn tpien(&self) -> Tpien

Tuning Pass Interrupt Enable

Source

pub const fn set_tpien(&mut self, val: Tpien)

Tuning Pass Interrupt Enable

Source

pub const fn ctoeien(&self) -> Ctoeien

Command Timeout Error Interrupt Enable

Source

pub const fn set_ctoeien(&mut self, val: Ctoeien)

Command Timeout Error Interrupt Enable

Source

pub const fn cceien(&self) -> Cceien

Command CRC Error Interrupt Enable

Source

pub const fn set_cceien(&mut self, val: Cceien)

Command CRC Error Interrupt Enable

Source

pub const fn cebeien(&self) -> Cebeien

Command End Bit Error Interrupt Enable

Source

pub const fn set_cebeien(&mut self, val: Cebeien)

Command End Bit Error Interrupt Enable

Source

pub const fn cieien(&self) -> Cieien

Command Index Error Interrupt Enable

Source

pub const fn set_cieien(&mut self, val: Cieien)

Command Index Error Interrupt Enable

Source

pub const fn dtoeien(&self) -> Dtoeien

Data Timeout Error Interrupt Enable

Source

pub const fn set_dtoeien(&mut self, val: Dtoeien)

Data Timeout Error Interrupt Enable

Source

pub const fn dceien(&self) -> Dceien

Data CRC Error Interrupt Enable

Source

pub const fn set_dceien(&mut self, val: Dceien)

Data CRC Error Interrupt Enable

Source

pub const fn debeien(&self) -> Debeien

Data End Bit Error Interrupt Enable

Source

pub const fn set_debeien(&mut self, val: Debeien)

Data End Bit Error Interrupt Enable

Source

pub const fn ac12eien(&self) -> Ac12eien

Auto CMD12 Error Interrupt Enable

Source

pub const fn set_ac12eien(&mut self, val: Ac12eien)

Auto CMD12 Error Interrupt Enable

Source

pub const fn tneien(&self) -> Tneien

Tuning Error Interrupt Enable

Source

pub const fn set_tneien(&mut self, val: Tneien)

Tuning Error Interrupt Enable

Source

pub const fn dmaeien(&self) -> Dmaeien

DMA Error Interrupt Enable

Source

pub const fn set_dmaeien(&mut self, val: Dmaeien)

DMA Error Interrupt Enable

Trait Implementations§

Source§

impl Clone for IntSignalEn

Source§

fn clone(&self) -> IntSignalEn

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for IntSignalEn

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for IntSignalEn

Source§

fn default() -> IntSignalEn

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

impl PartialEq for IntSignalEn

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for IntSignalEn

Source§

impl Eq for IntSignalEn

Source§

impl StructuralPartialEq for IntSignalEn

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.