pub struct ReadinessCheck {
pub id: String,
pub component: Component,
pub subject: String,
pub probe: String,
pub status: CheckStatus,
pub summary: Option<String>,
pub hint: Option<FailureHint>,
pub details: Option<Value>,
pub probe_mode: ProbeMode,
}Fields§
§id: String§component: Component§subject: String§probe: String§status: CheckStatus§summary: Option<String>§hint: Option<FailureHint>§details: Option<Value>§probe_mode: ProbeModeTrait Implementations§
Source§impl Clone for ReadinessCheck
impl Clone for ReadinessCheck
Source§fn clone(&self) -> ReadinessCheck
fn clone(&self) -> ReadinessCheck
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 ReadinessCheck
impl Debug for ReadinessCheck
Auto Trait Implementations§
impl Freeze for ReadinessCheck
impl RefUnwindSafe for ReadinessCheck
impl Send for ReadinessCheck
impl Sync for ReadinessCheck
impl Unpin for ReadinessCheck
impl UnsafeUnpin for ReadinessCheck
impl UnwindSafe for ReadinessCheck
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