Struct docker_api_stubs::models::Health
source · [−]pub struct Health {
pub failing_streak: Option<isize>,
pub log: Option<Vec<HealthcheckResult>>,
pub status: Option<String>,
}
Expand description
Health stores information about the container’s healthcheck results.
Fields
failing_streak: Option<isize>
FailingStreak is the number of consecutive failures
log: Option<Vec<HealthcheckResult>>
Log contains the last few results (oldest first)
status: Option<String>
Status is one of none
, starting
, healthy
or unhealthy
- “none” Indicates there is no healthcheck
- “starting” Starting indicates that the container is not yet ready
- “healthy” Healthy indicates that the container is running correctly
- “unhealthy” Unhealthy indicates that the container has a problem
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Health
impl<'de> Deserialize<'de> for Health
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Health
Auto Trait Implementations
impl RefUnwindSafe for Health
impl Send for Health
impl Sync for Health
impl Unpin for Health
impl UnwindSafe for Health
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more