#[repr(u8)]pub enum MiscphantomRamSize {
Size256kb = 0,
Size512kb = 1,
_RESERVED_2 = 2,
SizeMax = 3,
}Variants§
Size256kb = 0
256KB (RAMX0~X3, RAMA0~A7).
Size512kb = 1
512KB (RAMX0~X3, RAMA0~A11, RAMB0~B3).
_RESERVED_2 = 2
SizeMax = 3
640KB.
Implementations§
Trait Implementations§
Source§impl Clone for MiscphantomRamSize
impl Clone for MiscphantomRamSize
Source§fn clone(&self) -> MiscphantomRamSize
fn clone(&self) -> MiscphantomRamSize
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MiscphantomRamSize
impl Debug for MiscphantomRamSize
Source§impl From<MiscphantomRamSize> for u8
impl From<MiscphantomRamSize> for u8
Source§fn from(val: MiscphantomRamSize) -> u8
fn from(val: MiscphantomRamSize) -> u8
Converts to this type from the input type.
Source§impl From<u8> for MiscphantomRamSize
impl From<u8> for MiscphantomRamSize
Source§fn from(val: u8) -> MiscphantomRamSize
fn from(val: u8) -> MiscphantomRamSize
Converts to this type from the input type.
Source§impl Ord for MiscphantomRamSize
impl Ord for MiscphantomRamSize
Source§fn cmp(&self, other: &MiscphantomRamSize) -> Ordering
fn cmp(&self, other: &MiscphantomRamSize) -> Ordering
1.21.0 · 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
Source§impl PartialEq for MiscphantomRamSize
impl PartialEq for MiscphantomRamSize
Source§impl PartialOrd for MiscphantomRamSize
impl PartialOrd for MiscphantomRamSize
impl Copy for MiscphantomRamSize
impl Eq for MiscphantomRamSize
impl StructuralPartialEq for MiscphantomRamSize
Auto Trait Implementations§
impl Freeze for MiscphantomRamSize
impl RefUnwindSafe for MiscphantomRamSize
impl Send for MiscphantomRamSize
impl Sync for MiscphantomRamSize
impl Unpin for MiscphantomRamSize
impl UnwindSafe for MiscphantomRamSize
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