Enum Eeeramsize
#[repr(u8)]pub enum Eeeramsize {
_0010 = 2,
_0011 = 3,
_0100 = 4,
_0101 = 5,
_0110 = 6,
_0111 = 7,
_1000 = 8,
_1001 = 9,
_1111 = 15,
}Expand description
EEE SRAM SIZE
Value on reset: 0
Variants§
_0010 = 2
2: 4 KB
_0011 = 3
3: 2 KB
_0100 = 4
4: 1 KB
_0101 = 5
5: 512 Bytes
_0110 = 6
6: 256 Bytes
_0111 = 7
7: 128 Bytes
_1000 = 8
8: 64 Bytes
_1001 = 9
9: 32 Bytes
_1111 = 15
15: 0 Bytes
Trait Implementations§
§impl Clone for Eeeramsize
impl Clone for Eeeramsize
§fn clone(&self) -> Eeeramsize
fn clone(&self) -> Eeeramsize
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 more§impl Debug for Eeeramsize
impl Debug for Eeeramsize
§impl Format for Eeeramsize
impl Format for Eeeramsize
§impl From<Eeeramsize> for u8
impl From<Eeeramsize> for u8
§fn from(variant: Eeeramsize) -> Self
fn from(variant: Eeeramsize) -> Self
Converts to this type from the input type.
§impl PartialEq for Eeeramsize
impl PartialEq for Eeeramsize
impl Copy for Eeeramsize
impl Eq for Eeeramsize
impl IsEnum for Eeeramsize
impl StructuralPartialEq for Eeeramsize
Auto Trait Implementations§
impl Freeze for Eeeramsize
impl RefUnwindSafe for Eeeramsize
impl Send for Eeeramsize
impl Sync for Eeeramsize
impl Unpin for Eeeramsize
impl UnwindSafe for Eeeramsize
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