pub struct FsckError {
pub id: &'static str,
pub detail: String,
}Expand description
Git-compatible fsck failure for loose object validation.
Fields§
§id: &'static strCamelCase message id (e.g. missingTree).
detail: StringHuman-readable detail after id: .
Implementations§
Trait Implementations§
impl Eq for FsckError
impl StructuralPartialEq for FsckError
Auto Trait Implementations§
impl Freeze for FsckError
impl RefUnwindSafe for FsckError
impl Send for FsckError
impl Sync for FsckError
impl Unpin for FsckError
impl UnsafeUnpin for FsckError
impl UnwindSafe for FsckError
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