Enum stm32_metapac::fmc::vals::Cpsize
#[repr(u8)]pub enum Cpsize {
NOBURSTSPLIT = 0,
BYTES128 = 1,
BYTES256 = 2,
BYTES512 = 3,
BYTES1024 = 4,
_RESERVED_5 = 5,
_RESERVED_6 = 6,
_RESERVED_7 = 7,
}
Variants§
NOBURSTSPLIT = 0
No burst split when crossing page boundary
BYTES128 = 1
128 bytes CRAM page size
BYTES256 = 2
256 bytes CRAM page size
BYTES512 = 3
512 bytes CRAM page size
BYTES1024 = 4
1024 bytes CRAM page size
_RESERVED_5 = 5
_RESERVED_6 = 6
_RESERVED_7 = 7
Implementations§
Trait Implementations§
§impl Ord for Cpsize
impl Ord for Cpsize
§impl PartialOrd for Cpsize
impl PartialOrd for Cpsize
§fn partial_cmp(&self, other: &Cpsize) -> Option<Ordering>
fn partial_cmp(&self, other: &Cpsize) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Cpsize
impl Eq for Cpsize
impl StructuralEq for Cpsize
impl StructuralPartialEq for Cpsize
Auto Trait Implementations§
impl RefUnwindSafe for Cpsize
impl Send for Cpsize
impl Sync for Cpsize
impl Unpin for Cpsize
impl UnwindSafe for Cpsize
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