pub struct RefsFsckIssue {
pub severity: RefsFsckSeverity,
pub path: String,
pub msg_id: &'static str,
pub detail: String,
}Expand description
One diagnostic (use format_refs_fsck_line for Git-compatible output).
Fields§
§severity: RefsFsckSeverity§path: String§msg_id: &'static str§detail: StringTrait Implementations§
Source§impl Clone for RefsFsckIssue
impl Clone for RefsFsckIssue
Source§fn clone(&self) -> RefsFsckIssue
fn clone(&self) -> RefsFsckIssue
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 moreAuto Trait Implementations§
impl Freeze for RefsFsckIssue
impl RefUnwindSafe for RefsFsckIssue
impl Send for RefsFsckIssue
impl Sync for RefsFsckIssue
impl Unpin for RefsFsckIssue
impl UnsafeUnpin for RefsFsckIssue
impl UnwindSafe for RefsFsckIssue
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