pub struct TableHealth {
pub name: String,
pub health: Health,
pub reported: String,
}Expand description
One table’s name and what was concluded about it.
Fields§
§name: StringThe declared table name.
health: HealthThe verdict.
reported: StringThe counters worth showing whatever the verdict — the exclusion causes, which are legitimate states rather than problems.
Auto Trait Implementations§
impl Freeze for TableHealth
impl RefUnwindSafe for TableHealth
impl Send for TableHealth
impl Sync for TableHealth
impl Unpin for TableHealth
impl UnsafeUnpin for TableHealth
impl UnwindSafe for TableHealth
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