pub struct BalanceProgress {
pub expected: u64,
pub considered: u64,
pub completed: u64,
}Expand description
Progress counters returned by the kernel for an in-progress balance.
Fields§
§expected: u64Estimated number of chunks that will be relocated.
considered: u64Number of chunks considered so far.
completed: u64Number of chunks relocated so far.
Trait Implementations§
Source§impl Clone for BalanceProgress
impl Clone for BalanceProgress
Source§fn clone(&self) -> BalanceProgress
fn clone(&self) -> BalanceProgress
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 BalanceProgress
impl Debug for BalanceProgress
Source§impl PartialEq for BalanceProgress
impl PartialEq for BalanceProgress
impl Copy for BalanceProgress
impl Eq for BalanceProgress
impl StructuralPartialEq for BalanceProgress
Auto Trait Implementations§
impl Freeze for BalanceProgress
impl RefUnwindSafe for BalanceProgress
impl Send for BalanceProgress
impl Sync for BalanceProgress
impl Unpin for BalanceProgress
impl UnsafeUnpin for BalanceProgress
impl UnwindSafe for BalanceProgress
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