pub struct RegisterBlock { /* private fields */ }Expand description
Register block
Implementations§
Source§impl RegisterBlock
impl RegisterBlock
Sourcepub const fn wdata(&self) -> &Reg<WDATA_SPEC>
pub const fn wdata(&self) -> &Reg<WDATA_SPEC>
0x04 - Write data register
Sourcepub const fn sum0(&self) -> &Reg<SUM0_SPEC>
pub const fn sum0(&self) -> &Reg<SUM0_SPEC>
0x08 - 256-bit checksum result. Contents are undefined when CSR_SUM_VLD is 0.
Sourcepub const fn sum1(&self) -> &Reg<SUM1_SPEC>
pub const fn sum1(&self) -> &Reg<SUM1_SPEC>
0x0c - 256-bit checksum result. Contents are undefined when CSR_SUM_VLD is 0.
Sourcepub const fn sum2(&self) -> &Reg<SUM2_SPEC>
pub const fn sum2(&self) -> &Reg<SUM2_SPEC>
0x10 - 256-bit checksum result. Contents are undefined when CSR_SUM_VLD is 0.
Sourcepub const fn sum3(&self) -> &Reg<SUM3_SPEC>
pub const fn sum3(&self) -> &Reg<SUM3_SPEC>
0x14 - 256-bit checksum result. Contents are undefined when CSR_SUM_VLD is 0.
Sourcepub const fn sum4(&self) -> &Reg<SUM4_SPEC>
pub const fn sum4(&self) -> &Reg<SUM4_SPEC>
0x18 - 256-bit checksum result. Contents are undefined when CSR_SUM_VLD is 0.
Sourcepub const fn sum5(&self) -> &Reg<SUM5_SPEC>
pub const fn sum5(&self) -> &Reg<SUM5_SPEC>
0x1c - 256-bit checksum result. Contents are undefined when CSR_SUM_VLD is 0.
Auto Trait Implementations§
impl !Freeze for RegisterBlock
impl !RefUnwindSafe for RegisterBlock
impl Send for RegisterBlock
impl !Sync for RegisterBlock
impl Unpin for RegisterBlock
impl UnwindSafe for RegisterBlock
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
Source§impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more