pub struct DoctorCheck {
pub id: String,
pub scope: String,
pub status: DoctorCheckStatus,
pub elapsed_ms: u64,
pub message: String,
pub fix: Option<String>,
}Fields§
§id: String§scope: String§status: DoctorCheckStatus§elapsed_ms: u64§message: String§fix: Option<String>Trait Implementations§
Source§impl Clone for DoctorCheck
impl Clone for DoctorCheck
Source§fn clone(&self) -> DoctorCheck
fn clone(&self) -> DoctorCheck
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 DoctorCheck
impl Debug for DoctorCheck
Source§impl<'de> Deserialize<'de> for DoctorCheck
impl<'de> Deserialize<'de> for DoctorCheck
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 PartialEq for DoctorCheck
impl PartialEq for DoctorCheck
Source§fn eq(&self, other: &DoctorCheck) -> bool
fn eq(&self, other: &DoctorCheck) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DoctorCheck
impl Serialize for DoctorCheck
impl Eq for DoctorCheck
impl StructuralPartialEq for DoctorCheck
Auto Trait Implementations§
impl Freeze for DoctorCheck
impl RefUnwindSafe for DoctorCheck
impl Send for DoctorCheck
impl Sync for DoctorCheck
impl Unpin for DoctorCheck
impl UnsafeUnpin for DoctorCheck
impl UnwindSafe for DoctorCheck
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