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