ContainerStateWaitingGetExt

Trait ContainerStateWaitingGetExt 

Source
pub trait ContainerStateWaitingGetExt {
    const POD_INITIALIZING: &str = "PodInitializing";
    const CONTAINER_CREATING: &str = "ContainerCreating";

    // Required method
    fn reason(&self) -> Option<&str>;

    // Provided methods
    fn is_pod_initializing(&self) -> bool { ... }
    fn is_container_creating(&self) -> bool { ... }
}

Provided Associated Constants§

Source

const POD_INITIALIZING: &str = "PodInitializing"

Source

const CONTAINER_CREATING: &str = "ContainerCreating"

Required Methods§

Source

fn reason(&self) -> Option<&str>

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§