#[repr(u8)]pub enum Ramcfgselect {
Ret = 0,
Partial = 1,
Off = 2,
}
Expand description
Ram Configuration
Value on reset: 0
Variants§
Ret = 0
0: All the system RAM is retained
Partial = 1
1: Only the first 32Kbytes of the system RAM is retained
Off = 2
2: All the system RAM is turned OFF
Trait Implementations§
Source§impl Clone for Ramcfgselect
impl Clone for Ramcfgselect
Source§fn clone(&self) -> Ramcfgselect
fn clone(&self) -> Ramcfgselect
Returns a copy 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 Ramcfgselect
impl Debug for Ramcfgselect
Source§impl From<Ramcfgselect> for u8
impl From<Ramcfgselect> for u8
Source§fn from(variant: Ramcfgselect) -> Self
fn from(variant: Ramcfgselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Ramcfgselect
impl PartialEq for Ramcfgselect
impl Copy for Ramcfgselect
impl Eq for Ramcfgselect
impl IsEnum for Ramcfgselect
impl StructuralPartialEq for Ramcfgselect
Auto Trait Implementations§
impl Freeze for Ramcfgselect
impl RefUnwindSafe for Ramcfgselect
impl Send for Ramcfgselect
impl Sync for Ramcfgselect
impl Unpin for Ramcfgselect
impl UnwindSafe for Ramcfgselect
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