pub struct CheckIssue {
pub path: PathBuf,
pub check_type: CheckType,
pub severity: Severity,
pub message: String,
}Expand description
A single issue found during a health check.
Fields§
§path: PathBuf§check_type: CheckType§severity: Severity§message: StringTrait Implementations§
Source§impl Clone for CheckIssue
impl Clone for CheckIssue
Source§fn clone(&self) -> CheckIssue
fn clone(&self) -> CheckIssue
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 CheckIssue
impl RefUnwindSafe for CheckIssue
impl Send for CheckIssue
impl Sync for CheckIssue
impl Unpin for CheckIssue
impl UnsafeUnpin for CheckIssue
impl UnwindSafe for CheckIssue
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