pub struct HealthStatusList {
pub total: i64,
pub statuses: Vec<HealthStatus>,
}Expand description
Status List
Fields§
§total: i64Total number of statuses that matched your query.
statuses: Vec<HealthStatus>List of statuses.
Implementations§
Trait Implementations§
Source§impl Clone for HealthStatusList
impl Clone for HealthStatusList
Source§fn clone(&self) -> HealthStatusList
fn clone(&self) -> HealthStatusList
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 HealthStatusList
impl Debug for HealthStatusList
Source§impl<'de> Deserialize<'de> for HealthStatusList
impl<'de> Deserialize<'de> for HealthStatusList
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 Serialize for HealthStatusList
impl Serialize for HealthStatusList
impl Model for HealthStatusList
Auto Trait Implementations§
impl Freeze for HealthStatusList
impl RefUnwindSafe for HealthStatusList
impl Send for HealthStatusList
impl Sync for HealthStatusList
impl Unpin for HealthStatusList
impl UnsafeUnpin for HealthStatusList
impl UnwindSafe for HealthStatusList
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