pub struct ContainerHealthCheckConfig {
pub health_check_on_failure_action: Option<i64>,
pub healthconfig: Option<Schema2HealthConfig>,
}
Expand description
ContainerHealthCheckConfig describes a container healthcheck with attributes like command, retries, interval, start period, and timeout.
Fields§
§health_check_on_failure_action: Option<i64>
§healthconfig: Option<Schema2HealthConfig>
Trait Implementations§
Source§impl Clone for ContainerHealthCheckConfig
impl Clone for ContainerHealthCheckConfig
Source§fn clone(&self) -> ContainerHealthCheckConfig
fn clone(&self) -> ContainerHealthCheckConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ContainerHealthCheckConfig
impl Debug for ContainerHealthCheckConfig
Source§impl<'de> Deserialize<'de> for ContainerHealthCheckConfig
impl<'de> Deserialize<'de> for ContainerHealthCheckConfig
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ContainerHealthCheckConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ContainerHealthCheckConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ContainerHealthCheckConfig
impl PartialEq for ContainerHealthCheckConfig
Source§fn eq(&self, other: &ContainerHealthCheckConfig) -> bool
fn eq(&self, other: &ContainerHealthCheckConfig) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for ContainerHealthCheckConfig
impl Serialize for ContainerHealthCheckConfig
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ContainerHealthCheckConfig
Auto Trait Implementations§
impl Freeze for ContainerHealthCheckConfig
impl RefUnwindSafe for ContainerHealthCheckConfig
impl Send for ContainerHealthCheckConfig
impl Sync for ContainerHealthCheckConfig
impl Unpin for ContainerHealthCheckConfig
impl UnwindSafe for ContainerHealthCheckConfig
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