pub struct InterruptFlags { /* private fields */ }
Expand description
Interrupt sources available to a DMA channel
Implementations§
Source§impl InterruptFlags
impl InterruptFlags
Sourcepub const fn into_bytes(self) -> [u8; 1]
pub const fn into_bytes(self) -> [u8; 1]
Sourcepub const fn from_bytes(bytes: [u8; 1]) -> Self
pub const fn from_bytes(bytes: [u8; 1]) -> Self
Converts the given bytes directly into the bitfield struct.
Source§impl InterruptFlags
impl InterruptFlags
Sourcepub fn terr_or_err(
&self,
) -> Result<<bool as Specifier>::InOut, InvalidBitPattern<<bool as Specifier>::Bytes>>
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
Sourcepub fn with_terr(self, new_val: <bool as Specifier>::InOut) -> Self
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
Sourcepub fn with_terr_checked(
self,
new_val: <bool as Specifier>::InOut,
) -> Result<Self, OutOfBounds>
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
Sourcepub fn set_terr(&mut self, new_val: <bool as Specifier>::InOut)
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
Sourcepub fn set_terr_checked(
&mut self,
new_val: <bool as Specifier>::InOut,
) -> Result<(), OutOfBounds>
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
Sourcepub fn tcmpl(&self) -> <bool as Specifier>::InOut
pub fn tcmpl(&self) -> <bool as Specifier>::InOut
Returns the value of tcmpl. Transfer complete
Sourcepub fn tcmpl_or_err(
&self,
) -> Result<<bool as Specifier>::InOut, InvalidBitPattern<<bool as Specifier>::Bytes>>
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
Sourcepub fn with_tcmpl(self, new_val: <bool as Specifier>::InOut) -> Self
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
Sourcepub fn with_tcmpl_checked(
self,
new_val: <bool as Specifier>::InOut,
) -> Result<Self, OutOfBounds>
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
Sourcepub fn set_tcmpl(&mut self, new_val: <bool as Specifier>::InOut)
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
Sourcepub fn set_tcmpl_checked(
&mut self,
new_val: <bool as Specifier>::InOut,
) -> Result<(), OutOfBounds>
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
Sourcepub fn susp_or_err(
&self,
) -> Result<<bool as Specifier>::InOut, InvalidBitPattern<<bool as Specifier>::Bytes>>
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
Sourcepub fn with_susp(self, new_val: <bool as Specifier>::InOut) -> Self
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
Sourcepub fn with_susp_checked(
self,
new_val: <bool as Specifier>::InOut,
) -> Result<Self, OutOfBounds>
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
Sourcepub fn set_susp(&mut self, new_val: <bool as Specifier>::InOut)
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
Sourcepub fn set_susp_checked(
&mut self,
new_val: <bool as Specifier>::InOut,
) -> Result<(), OutOfBounds>
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 Clone for InterruptFlags
impl Clone for InterruptFlags
Source§fn clone(&self) -> InterruptFlags
fn clone(&self) -> InterruptFlags
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more