atsamd_hal::dmac::channel

Struct InterruptFlags

Source
pub struct InterruptFlags { /* private fields */ }
Expand description

Interrupt sources available to a DMA channel

Implementations§

Source§

impl InterruptFlags

Source

pub const fn new() -> Self

Returns an instance with zero initialized data.

Source§

impl InterruptFlags

Source

pub const fn into_bytes(self) -> [u8; 1]

Returns the underlying bits.

§Layout

The returned byte array is layed out in the same way as described here.

Source

pub const fn from_bytes(bytes: [u8; 1]) -> Self

Converts the given bytes directly into the bitfield struct.

Source§

impl InterruptFlags

Source

pub fn terr(&self) -> <bool as Specifier>::InOut

Returns the value of terr. Transfer error

Source

pub fn terr_or_err( &self, ) -> Result<<bool as Specifier>::InOut, InvalidBitPattern<<bool as Specifier>::Bytes>>

Returns the value of terr.

#Errors

If the returned value contains an invalid bit pattern for terr. Transfer error

Source

pub fn with_terr(self, new_val: <bool as Specifier>::InOut) -> Self

Returns a copy of the bitfield with the value of terr set to the given value.

#Panics

If the given value is out of bounds for terr. Transfer error

Source

pub fn with_terr_checked( self, new_val: <bool as Specifier>::InOut, ) -> Result<Self, OutOfBounds>

Returns a copy of the bitfield with the value of terr set to the given value.

#Errors

If the given value is out of bounds for terr. Transfer error

Source

pub fn set_terr(&mut self, new_val: <bool as Specifier>::InOut)

Sets the value of terr to the given value.

#Panics

If the given value is out of bounds for terr. Transfer error

Source

pub fn set_terr_checked( &mut self, new_val: <bool as Specifier>::InOut, ) -> Result<(), OutOfBounds>

Sets the value of terr to the given value.

#Errors

If the given value is out of bounds for terr. Transfer error

Source

pub fn tcmpl(&self) -> <bool as Specifier>::InOut

Returns the value of tcmpl. Transfer complete

Source

pub fn tcmpl_or_err( &self, ) -> Result<<bool as Specifier>::InOut, InvalidBitPattern<<bool as Specifier>::Bytes>>

Returns the value of tcmpl.

#Errors

If the returned value contains an invalid bit pattern for tcmpl. Transfer complete

Source

pub fn with_tcmpl(self, new_val: <bool as Specifier>::InOut) -> Self

Returns a copy of the bitfield with the value of tcmpl set to the given value.

#Panics

If the given value is out of bounds for tcmpl. Transfer complete

Source

pub fn with_tcmpl_checked( self, new_val: <bool as Specifier>::InOut, ) -> Result<Self, OutOfBounds>

Returns a copy of the bitfield with the value of tcmpl set to the given value.

#Errors

If the given value is out of bounds for tcmpl. Transfer complete

Source

pub fn set_tcmpl(&mut self, new_val: <bool as Specifier>::InOut)

Sets the value of tcmpl to the given value.

#Panics

If the given value is out of bounds for tcmpl. Transfer complete

Source

pub fn set_tcmpl_checked( &mut self, new_val: <bool as Specifier>::InOut, ) -> Result<(), OutOfBounds>

Sets the value of tcmpl to the given value.

#Errors

If the given value is out of bounds for tcmpl. Transfer complete

Source

pub fn susp(&self) -> <bool as Specifier>::InOut

Returns the value of susp. Transfer suspended

Source

pub fn susp_or_err( &self, ) -> Result<<bool as Specifier>::InOut, InvalidBitPattern<<bool as Specifier>::Bytes>>

Returns the value of susp.

#Errors

If the returned value contains an invalid bit pattern for susp. Transfer suspended

Source

pub fn with_susp(self, new_val: <bool as Specifier>::InOut) -> Self

Returns a copy of the bitfield with the value of susp set to the given value.

#Panics

If the given value is out of bounds for susp. Transfer suspended

Source

pub fn with_susp_checked( self, new_val: <bool as Specifier>::InOut, ) -> Result<Self, OutOfBounds>

Returns a copy of the bitfield with the value of susp set to the given value.

#Errors

If the given value is out of bounds for susp. Transfer suspended

Source

pub fn set_susp(&mut self, new_val: <bool as Specifier>::InOut)

Sets the value of susp to the given value.

#Panics

If the given value is out of bounds for susp. Transfer suspended

Source

pub fn set_susp_checked( &mut self, new_val: <bool as Specifier>::InOut, ) -> Result<(), OutOfBounds>

Sets the value of susp to the given value.

#Errors

If the given value is out of bounds for susp. Transfer suspended

Trait Implementations§

Source§

impl CheckTotalSizeMultipleOf8 for InterruptFlags

Source§

type Size = TotalSize<[(); 0]>

Source§

impl Clone for InterruptFlags

Source§

fn clone(&self) -> InterruptFlags

Returns a copy 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 Default for InterruptFlags

Source§

fn default() -> Self

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

impl From<InterruptFlags> for u8
where [(); 8]: IsU8Compatible,

Source§

fn from(__bf_bitfield: InterruptFlags) -> Self

Converts to this type from the input type.
Source§

impl From<u8> for InterruptFlags
where [(); 8]: IsU8Compatible,

Source§

fn from(__bf_prim: u8) -> Self

Converts to this type from the input type.
Source§

impl Copy for InterruptFlags

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, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> Same for T

Source§

type Output = T

Should always be Self
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.