pub struct GrowOutcome {
pub old_blocks: u64,
pub new_blocks: u64,
pub old_groups: u32,
pub new_groups: u32,
}Expand description
Result of a successful offline grow.
Fields§
§old_blocks: u644 KiB block count before the grow.
new_blocks: u644 KiB block count after the grow.
old_groups: u32Block group count before the grow.
new_groups: u32Block group count after the grow.
Trait Implementations§
Source§impl Clone for GrowOutcome
impl Clone for GrowOutcome
Source§fn clone(&self) -> GrowOutcome
fn clone(&self) -> GrowOutcome
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 moreimpl Copy for GrowOutcome
Source§impl Debug for GrowOutcome
impl Debug for GrowOutcome
impl Eq for GrowOutcome
Source§impl PartialEq for GrowOutcome
impl PartialEq for GrowOutcome
Source§fn eq(&self, other: &GrowOutcome) -> bool
fn eq(&self, other: &GrowOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GrowOutcome
Auto Trait Implementations§
impl Freeze for GrowOutcome
impl RefUnwindSafe for GrowOutcome
impl Send for GrowOutcome
impl Sync for GrowOutcome
impl Unpin for GrowOutcome
impl UnsafeUnpin for GrowOutcome
impl UnwindSafe for GrowOutcome
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