pub struct Readiness {
pub ready: bool,
pub reason: Option<String>,
pub last_pass_age_secs: i64,
pub active: i64,
}Expand description
Readiness probe result.
Fields§
§ready: boolWhether the supervisor passed recently enough.
reason: Option<String>Human-readable reason.
last_pass_age_secs: i64Seconds since the last pass.
active: i64Active instances.
Trait Implementations§
impl Eq for Readiness
impl StructuralPartialEq for Readiness
Auto Trait Implementations§
impl Freeze for Readiness
impl RefUnwindSafe for Readiness
impl Send for Readiness
impl Sync for Readiness
impl Unpin for Readiness
impl UnsafeUnpin for Readiness
impl UnwindSafe for Readiness
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