pub struct InventoryProgress {
pub branches_visited: u64,
pub entries_seen: u64,
pub unique_items: u64,
pub active_time_ms: u64,
pub paused_time_ms: u64,
pub items_per_second: f64,
pub estimated_remaining_ms: Option<u64>,
}Expand description
Progress emitted between bounded inventory operations.
Fields§
§branches_visited: u64§entries_seen: u64§unique_items: u64§active_time_ms: u64§paused_time_ms: u64§items_per_second: f64§estimated_remaining_ms: Option<u64>Trait Implementations§
Source§impl Clone for InventoryProgress
impl Clone for InventoryProgress
Source§fn clone(&self) -> InventoryProgress
fn clone(&self) -> InventoryProgress
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InventoryProgress
impl Debug for InventoryProgress
Source§impl PartialEq for InventoryProgress
impl PartialEq for InventoryProgress
impl StructuralPartialEq for InventoryProgress
Auto Trait Implementations§
impl Freeze for InventoryProgress
impl RefUnwindSafe for InventoryProgress
impl Send for InventoryProgress
impl Sync for InventoryProgress
impl Unpin for InventoryProgress
impl UnsafeUnpin for InventoryProgress
impl UnwindSafe for InventoryProgress
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