pub enum State {
InProgress {
len: Option<u64>,
pos: u64,
bytes: bool,
remaining: f32,
},
Completed {
duration: f32,
},
Cancelled,
}
Expand description
The state of the progress.
This structure is serialisable with the serde
feature.
Variants§
InProgress
The report is in progress.
Fields
Completed
The progress reporter is finished.
This occurs when Tx::finish
is called.
Cancelled
The progress was cancelled.
Trait Implementations§
impl Copy for State
impl StructuralPartialEq for State
Auto Trait Implementations§
impl Freeze for State
impl RefUnwindSafe for State
impl Send for State
impl Sync for State
impl Unpin for State
impl UnwindSafe for State
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