pub enum DoctorFinding {
Ok(String),
Warn(String),
Fail(String),
Info(String),
}Expand description
A single finding from AgentSurface::doctor_check.
Variants§
Trait Implementations§
Source§impl Clone for DoctorFinding
impl Clone for DoctorFinding
Source§fn clone(&self) -> DoctorFinding
fn clone(&self) -> DoctorFinding
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 DoctorFinding
impl RefUnwindSafe for DoctorFinding
impl Send for DoctorFinding
impl Sync for DoctorFinding
impl Unpin for DoctorFinding
impl UnsafeUnpin for DoctorFinding
impl UnwindSafe for DoctorFinding
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