Enum CrcBurst
#[repr(u8)]pub enum CrcBurst {
Word4 = 0,
Word16 = 1,
Word64 = 2,
Word256 = 3,
}Variants§
Word4 = 0
every burst has a size of 4 Flash words (64 Bytes).
Word16 = 1
every burst has a size of 16 Flash words (256 Bytes).
Word64 = 2
every burst has a size of 64 Flash words (1 Kbytes).
Word256 = 3
every burst has a size of 256 Flash words (4 Kbytes).
Implementations§
Trait Implementations§
impl Copy for CrcBurst
impl Eq for CrcBurst
§impl Ord for CrcBurst
impl Ord for CrcBurst
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
§impl PartialOrd for CrcBurst
impl PartialOrd for CrcBurst
impl StructuralPartialEq for CrcBurst
Auto Trait Implementations§
impl Freeze for CrcBurst
impl RefUnwindSafe for CrcBurst
impl Send for CrcBurst
impl Sync for CrcBurst
impl Unpin for CrcBurst
impl UnsafeUnpin for CrcBurst
impl UnwindSafe for CrcBurst
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