Enum CodeOp
#[repr(u8)]pub enum CodeOp {
NoFlashInt = 0,
SingleWrInt = 1,
BurstWrInt = 2,
PgEraseInt = 3,
BankEraseInt = 4,
MassEraseInt = 5,
OptChangeInt = 6,
_RESERVED_7 = 7,
}Variants§
NoFlashInt = 0
No Flash operation interrupted by previous reset
SingleWrInt = 1
Single write operation interrupted
BurstWrInt = 2
Burst write operation interrupted
PgEraseInt = 3
Page erase operation interrupted
BankEraseInt = 4
Bank erase operation interrupted
MassEraseInt = 5
Mass erase operation interrupted
OptChangeInt = 6
Option change operation interrupted
_RESERVED_7 = 7
Implementations§
Trait Implementations§
§impl Ord for CodeOp
impl Ord for CodeOp
§impl PartialOrd for CodeOp
impl PartialOrd for CodeOp
impl Copy for CodeOp
impl Eq for CodeOp
impl StructuralPartialEq for CodeOp
Auto Trait Implementations§
impl Freeze for CodeOp
impl RefUnwindSafe for CodeOp
impl Send for CodeOp
impl Sync for CodeOp
impl Unpin for CodeOp
impl UnwindSafe for CodeOp
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