#[repr(transparent)]pub struct Seed(pub u32);Expand description
CRC seed register
Tuple Fields§
§0: u32Implementations§
Source§impl Seed
impl Seed
Sourcepub const fn crc_seed(&self) -> u32
pub const fn crc_seed(&self) -> u32
A write access to this register will load CRC seed value to CRC_SUM register with selected bit order and 1’s complement pre-processes. A write access to this register will overrule the CRC calculation in progresses.
Sourcepub const fn set_crc_seed(&mut self, val: u32)
pub const fn set_crc_seed(&mut self, val: u32)
A write access to this register will load CRC seed value to CRC_SUM register with selected bit order and 1’s complement pre-processes. A write access to this register will overrule the CRC calculation in progresses.
Trait Implementations§
impl Copy for Seed
impl Eq for Seed
impl StructuralPartialEq for Seed
Auto Trait Implementations§
impl Freeze for Seed
impl RefUnwindSafe for Seed
impl Send for Seed
impl Sync for Seed
impl Unpin for Seed
impl UnwindSafe for Seed
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more