pub struct ProbeResultSummary {
pub name: String,
pub healthy: bool,
pub detail: Option<String>,
}Expand description
Probe result summary (from guest probes).
Fields§
§name: String§healthy: bool§detail: Option<String>Trait Implementations§
Source§impl Clone for ProbeResultSummary
impl Clone for ProbeResultSummary
Source§fn clone(&self) -> ProbeResultSummary
fn clone(&self) -> ProbeResultSummary
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 moreSource§impl Debug for ProbeResultSummary
impl Debug for ProbeResultSummary
Source§impl<'de> Deserialize<'de> for ProbeResultSummary
impl<'de> Deserialize<'de> for ProbeResultSummary
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
Auto Trait Implementations§
impl Freeze for ProbeResultSummary
impl RefUnwindSafe for ProbeResultSummary
impl Send for ProbeResultSummary
impl Sync for ProbeResultSummary
impl Unpin for ProbeResultSummary
impl UnsafeUnpin for ProbeResultSummary
impl UnwindSafe for ProbeResultSummary
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