#[repr(u8)]pub enum RamSize {
Show 16 variants
SIZE_8KB = 0,
SIZE_16KB = 1,
SIZE_32KB = 2,
SIZE_64KB = 3,
SIZE_96KB = 4,
SIZE_128KB = 5,
SIZE_160KB = 6,
SIZE_192KB = 7,
SIZE_256KB = 8,
SIZE_288KB = 9,
SIZE_352KB = 10,
SIZE_512KB = 11,
_RESERVED_c = 12,
_RESERVED_d = 13,
_RESERVED_e = 14,
_RESERVED_f = 15,
}Variants§
SIZE_8KB = 0
8KB.
SIZE_16KB = 1
16KB.
SIZE_32KB = 2
32KB.
SIZE_64KB = 3
64KB.
SIZE_96KB = 4
96KB.
SIZE_128KB = 5
128KB.
SIZE_160KB = 6
160KB.
SIZE_192KB = 7
192KB.
SIZE_256KB = 8
256KB.
SIZE_288KB = 9
288KB.
SIZE_352KB = 10
352KB.
SIZE_512KB = 11
512KB.
_RESERVED_c = 12
_RESERVED_d = 13
_RESERVED_e = 14
_RESERVED_f = 15
Implementations§
Trait Implementations§
Source§impl Ord for RamSize
impl Ord for RamSize
Source§impl PartialOrd for RamSize
impl PartialOrd for RamSize
impl Copy for RamSize
impl Eq for RamSize
impl StructuralPartialEq for RamSize
Auto Trait Implementations§
impl Freeze for RamSize
impl RefUnwindSafe for RamSize
impl Send for RamSize
impl Sync for RamSize
impl Unpin for RamSize
impl UnwindSafe for RamSize
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