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§impl Debug for CommandProgress
impl Debug for CommandProgress
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