pub enum HealthcheckTestKind {
None,
Cmd,
CmdShell,
Other,
}Expand description
The command-mode token at the beginning of a health-check list.
Variants§
None
Disable the image health check.
Cmd
Execute the remaining list directly.
CmdShell
Execute the remaining string through the container shell.
Other
An unrecognized command-mode token.
Trait Implementations§
Source§impl Clone for HealthcheckTestKind
impl Clone for HealthcheckTestKind
Source§fn clone(&self) -> HealthcheckTestKind
fn clone(&self) -> HealthcheckTestKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for HealthcheckTestKind
Source§impl Debug for HealthcheckTestKind
impl Debug for HealthcheckTestKind
impl Eq for HealthcheckTestKind
Source§impl Hash for HealthcheckTestKind
impl Hash for HealthcheckTestKind
Source§impl PartialEq for HealthcheckTestKind
impl PartialEq for HealthcheckTestKind
impl StructuralPartialEq for HealthcheckTestKind
Auto Trait Implementations§
impl Freeze for HealthcheckTestKind
impl RefUnwindSafe for HealthcheckTestKind
impl Send for HealthcheckTestKind
impl Sync for HealthcheckTestKind
impl Unpin for HealthcheckTestKind
impl UnsafeUnpin for HealthcheckTestKind
impl UnwindSafe for HealthcheckTestKind
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