[][src]Struct rust_runc::Container

pub struct Container {
    pub id: Option<String>,
    pub pid: Option<usize>,
    pub status: Option<String>,
    pub bundle: Option<String>,
    pub rootfs: Option<String>,
    pub created: Option<DateTime<Utc>>,
    pub annotations: Option<HashMap<String, String>>,
}

Runc container

Fields

id: Option<String>

Container id

pid: Option<usize>

Process id

status: Option<String>

Current status

bundle: Option<String>

OCI bundle path

rootfs: Option<String>

Root filesystem path

created: Option<DateTime<Utc>>

Creation time

annotations: Option<HashMap<String, String>>

Annotations

Trait Implementations

impl Debug for Container[src]

impl<'de> Deserialize<'de> for Container[src]

impl Serialize for Container[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,