pub enum ProgressEvent {
Started {
total_bytes: u32,
},
Erased,
Programmed {
bytes: u32,
},
Finished,
Aborted,
StartedErasing,
FinishedErasing,
AbortedErasing,
_Reserved_,
}Variants§
Started
Erased
Programmed
Finished
Aborted
StartedErasing
FinishedErasing
AbortedErasing
_Reserved_
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ProgressEvent
impl RefUnwindSafe for ProgressEvent
impl Send for ProgressEvent
impl Sync for ProgressEvent
impl Unpin for ProgressEvent
impl UnsafeUnpin for ProgressEvent
impl UnwindSafe for ProgressEvent
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