pub struct ServiceReportSummary {
pub alive: Vec<ServiceReport<()>>,
pub dead: Vec<ServiceReport<Unhealthy>>,
pub timestamp: i32,
}
Fields§
§alive: Vec<ServiceReport<()>>
§dead: Vec<ServiceReport<Unhealthy>>
§timestamp: i32
Trait Implementations§
Source§impl Clone for ServiceReportSummary
impl Clone for ServiceReportSummary
Source§fn clone(&self) -> ServiceReportSummary
fn clone(&self) -> ServiceReportSummary
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 moreAuto Trait Implementations§
impl Freeze for ServiceReportSummary
impl RefUnwindSafe for ServiceReportSummary
impl Send for ServiceReportSummary
impl Sync for ServiceReportSummary
impl Unpin for ServiceReportSummary
impl UnwindSafe for ServiceReportSummary
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