pub struct DoctorResult {
pub ok: bool,
pub root: String,
pub db_path: String,
pub checks: Vec<DoctorCheck>,
}Fields§
§ok: bool§root: String§db_path: String§checks: Vec<DoctorCheck>Trait Implementations§
Source§impl Clone for DoctorResult
impl Clone for DoctorResult
Source§fn clone(&self) -> DoctorResult
fn clone(&self) -> DoctorResult
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 DoctorResult
impl Debug for DoctorResult
Source§impl<'de> Deserialize<'de> for DoctorResult
impl<'de> Deserialize<'de> for DoctorResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for DoctorResult
impl Display for DoctorResult
Auto Trait Implementations§
impl Freeze for DoctorResult
impl RefUnwindSafe for DoctorResult
impl Send for DoctorResult
impl Sync for DoctorResult
impl Unpin for DoctorResult
impl UnsafeUnpin for DoctorResult
impl UnwindSafe for DoctorResult
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