pub struct CommandProgress {
pub total: usize,
pub queued: usize,
pub executing: usize,
pub completed: usize,
}Expand description
Snapshot of command queue progress.
Fields§
§total: usizeTotal number of commands queued
queued: usizeNumber of commands currently queued
executing: usizeNumber of commands currently executing
completed: usizeNumber of commands completed
Trait Implementations§
Source§impl Clone for CommandProgress
impl Clone for CommandProgress
Source§fn clone(&self) -> CommandProgress
fn clone(&self) -> CommandProgress
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CommandProgress
impl Debug for CommandProgress
Source§impl Default for CommandProgress
impl Default for CommandProgress
Source§fn default() -> CommandProgress
fn default() -> CommandProgress
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CommandProgress
impl RefUnwindSafe for CommandProgress
impl Send for CommandProgress
impl Sync for CommandProgress
impl Unpin for CommandProgress
impl UnsafeUnpin for CommandProgress
impl UnwindSafe for CommandProgress
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