#[repr(u8)]pub enum Datacfg {
NOBUF = 0,
ONEBUF = 1,
ALLBUF = 2,
_RESERVED_3 = 3,
}Variants§
NOBUF = 0
Data accesses from flash are not buffered.
ONEBUF = 1
One buffer is used for all data accesses.
ALLBUF = 2
All buffers can be used for data accesses.
_RESERVED_3 = 3
Implementations§
Trait Implementations§
Source§impl Ord for Datacfg
impl Ord for Datacfg
Source§impl PartialOrd for Datacfg
impl PartialOrd for Datacfg
impl Copy for Datacfg
impl Eq for Datacfg
impl StructuralPartialEq for Datacfg
Auto Trait Implementations§
impl Freeze for Datacfg
impl RefUnwindSafe for Datacfg
impl Send for Datacfg
impl Sync for Datacfg
impl Unpin for Datacfg
impl UnwindSafe for Datacfg
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