pub struct MonitorStatus {
pub name: String,
pub supported: bool,
pub complete: bool,
}Expand description
Status of a single readiness monitor.
Fields§
§name: String§supported: bool§complete: boolTrait Implementations§
Source§impl Clone for MonitorStatus
impl Clone for MonitorStatus
Source§fn clone(&self) -> MonitorStatus
fn clone(&self) -> MonitorStatus
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 MonitorStatus
impl RefUnwindSafe for MonitorStatus
impl Send for MonitorStatus
impl Sync for MonitorStatus
impl Unpin for MonitorStatus
impl UnsafeUnpin for MonitorStatus
impl UnwindSafe for MonitorStatus
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