pub struct FsckFinding {
pub rule: FsckRule,
pub node: Option<ContentHash>,
pub detail: String,
}Expand description
One violation: the rule, where it was found, and a human-readable detail.
Fields§
§rule: FsckRule§node: Option<ContentHash>The manifest node the finding attaches to, when there is one.
detail: StringTrait Implementations§
Source§impl Clone for FsckFinding
impl Clone for FsckFinding
Source§fn clone(&self) -> FsckFinding
fn clone(&self) -> FsckFinding
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 moreSource§impl Debug for FsckFinding
impl Debug for FsckFinding
Source§impl Display for FsckFinding
impl Display for FsckFinding
impl Eq for FsckFinding
Source§impl PartialEq for FsckFinding
impl PartialEq for FsckFinding
impl StructuralPartialEq for FsckFinding
Auto Trait Implementations§
impl Freeze for FsckFinding
impl RefUnwindSafe for FsckFinding
impl Send for FsckFinding
impl Sync for FsckFinding
impl Unpin for FsckFinding
impl UnsafeUnpin for FsckFinding
impl UnwindSafe for FsckFinding
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