pub struct LabelHealthResult {
pub total_labels: usize,
pub healthy_count: usize,
pub warning_count: usize,
pub critical_count: usize,
pub labels: Vec<LabelHealth>,
pub summaries: Vec<LabelSummary>,
pub attention_needed: Vec<String>,
}Fields§
§total_labels: usize§healthy_count: usize§warning_count: usize§critical_count: usize§labels: Vec<LabelHealth>§summaries: Vec<LabelSummary>§attention_needed: Vec<String>Trait Implementations§
Source§impl Clone for LabelHealthResult
impl Clone for LabelHealthResult
Source§fn clone(&self) -> LabelHealthResult
fn clone(&self) -> LabelHealthResult
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 LabelHealthResult
impl Debug for LabelHealthResult
Auto Trait Implementations§
impl Freeze for LabelHealthResult
impl RefUnwindSafe for LabelHealthResult
impl Send for LabelHealthResult
impl Sync for LabelHealthResult
impl Unpin for LabelHealthResult
impl UnsafeUnpin for LabelHealthResult
impl UnwindSafe for LabelHealthResult
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