pub struct FsckResult {
pub ok: bool,
pub errors: Vec<FsckError>,
pub warnings: Vec<FsckWarning>,
pub stats: FsckStats,
}Expand description
Result of a repository integrity check.
Fields§
§ok: boolWhether the repository passed all checks.
errors: Vec<FsckError>Critical errors that indicate corruption.
warnings: Vec<FsckWarning>Warnings that don’t indicate corruption but may need attention.
stats: FsckStatsStatistics about the check.
Trait Implementations§
Source§impl Debug for FsckResult
impl Debug for FsckResult
Source§impl Default for FsckResult
impl Default for FsckResult
Source§fn default() -> FsckResult
fn default() -> FsckResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FsckResult
impl RefUnwindSafe for FsckResult
impl Send for FsckResult
impl Sync for FsckResult
impl Unpin for FsckResult
impl UnsafeUnpin for FsckResult
impl UnwindSafe for FsckResult
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more