pub struct SanityIssue {
pub severity: IssueSeverity,
pub message: String,
pub fix_available: bool,
}Expand description
A single issue found during sanity checks.
Fields§
§severity: IssueSeveritySeverity of the issue.
message: StringHuman-readable description of the issue.
fix_available: boolWhether a fix is available for this issue.
Trait Implementations§
Source§impl Clone for SanityIssue
impl Clone for SanityIssue
Source§fn clone(&self) -> SanityIssue
fn clone(&self) -> SanityIssue
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 moreAuto Trait Implementations§
impl Freeze for SanityIssue
impl RefUnwindSafe for SanityIssue
impl Send for SanityIssue
impl Sync for SanityIssue
impl Unpin for SanityIssue
impl UnsafeUnpin for SanityIssue
impl UnwindSafe for SanityIssue
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