pub struct ContainerInspectState {Show 23 fields
pub cgroup_path: String,
pub checkpointed: bool,
pub checkpointed_at: DateTime<Utc>,
pub checkpoint_log: String,
pub checkpoint_path: String,
pub conmon_pid: i64,
pub dead: bool,
pub error: String,
pub exit_code: i32,
pub finished_at: DateTime<Utc>,
pub health: HealthCheck,
pub oci_version: String,
pub oom_killed: bool,
pub paused: bool,
pub pid: i64,
pub restarting: bool,
pub restored: bool,
pub restored_at: DateTime<Utc>,
pub restore_log: String,
pub running: bool,
pub started_at: DateTime<Utc>,
pub status: String,
pub stopped_by_user: bool,
}
Fields§
§cgroup_path: String
§checkpointed: bool
§checkpointed_at: DateTime<Utc>
§checkpoint_log: String
§checkpoint_path: String
§conmon_pid: i64
§dead: bool
§error: String
§exit_code: i32
§finished_at: DateTime<Utc>
§health: HealthCheck
§oci_version: String
§oom_killed: bool
§paused: bool
§pid: i64
§restarting: bool
§restored: bool
§restored_at: DateTime<Utc>
§restore_log: String
§running: bool
§started_at: DateTime<Utc>
§status: String
§stopped_by_user: bool
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ContainerInspectState
impl<'de> Deserialize<'de> for ContainerInspectState
Source§fn 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
Auto Trait Implementations§
impl Freeze for ContainerInspectState
impl RefUnwindSafe for ContainerInspectState
impl Send for ContainerInspectState
impl Sync for ContainerInspectState
impl Unpin for ContainerInspectState
impl UnwindSafe for ContainerInspectState
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