pub struct StateFileSummary {
pub locations_checked: usize,
pub valid_files: usize,
pub corrupted_or_missing: usize,
pub locations: Vec<StateFileLocation>,
}Expand description
State file summary
Fields§
§locations_checked: usizeNumber of state file locations checked
valid_files: usizeNumber of valid state files found
corrupted_or_missing: usizeNumber of corrupted/missing files
locations: Vec<StateFileLocation>State file locations (paths only, not contents)
Implementations§
Trait Implementations§
Source§impl Clone for StateFileSummary
impl Clone for StateFileSummary
Source§fn clone(&self) -> StateFileSummary
fn clone(&self) -> StateFileSummary
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 StateFileSummary
impl Debug for StateFileSummary
Source§impl Default for StateFileSummary
impl Default for StateFileSummary
Source§fn default() -> StateFileSummary
fn default() -> StateFileSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StateFileSummary
impl<'de> Deserialize<'de> for StateFileSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for StateFileSummary
impl RefUnwindSafe for StateFileSummary
impl Send for StateFileSummary
impl Sync for StateFileSummary
impl Unpin for StateFileSummary
impl UnsafeUnpin for StateFileSummary
impl UnwindSafe for StateFileSummary
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