pub struct DetailedHealthSnapshot {
pub version: String,
pub deployment_id: Option<String>,
pub region: Option<String>,
pub timestamp: Option<String>,
pub cpu: HealthCpuSnapshot,
pub memory: HealthMemorySnapshot,
pub os: HealthOsSnapshot,
pub process: HealthProcessSnapshot,
pub drives: Vec<HealthDriveSnapshot>,
pub unsupported_probes: Vec<String>,
pub extra: BTreeMap<String, Value>,
}Expand description
Detailed authenticated RustFS health snapshot.
Fields§
§version: String§deployment_id: Option<String>§region: Option<String>§timestamp: Option<String>§cpu: HealthCpuSnapshot§memory: HealthMemorySnapshot§os: HealthOsSnapshot§process: HealthProcessSnapshot§drives: Vec<HealthDriveSnapshot>§unsupported_probes: Vec<String>§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for DetailedHealthSnapshot
impl Clone for DetailedHealthSnapshot
Source§fn clone(&self) -> DetailedHealthSnapshot
fn clone(&self) -> DetailedHealthSnapshot
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 DetailedHealthSnapshot
impl Debug for DetailedHealthSnapshot
Source§impl<'de> Deserialize<'de> for DetailedHealthSnapshot
impl<'de> Deserialize<'de> for DetailedHealthSnapshot
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 DetailedHealthSnapshot
impl PartialEq for DetailedHealthSnapshot
Source§impl Serialize for DetailedHealthSnapshot
impl Serialize for DetailedHealthSnapshot
impl StructuralPartialEq for DetailedHealthSnapshot
Auto Trait Implementations§
impl Freeze for DetailedHealthSnapshot
impl RefUnwindSafe for DetailedHealthSnapshot
impl Send for DetailedHealthSnapshot
impl Sync for DetailedHealthSnapshot
impl Unpin for DetailedHealthSnapshot
impl UnsafeUnpin for DetailedHealthSnapshot
impl UnwindSafe for DetailedHealthSnapshot
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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