pub struct ContainerSummary {
pub exit_code: Option<i64>,
pub reason: Option<String>,
}
Expand description
An object representing summary details of a container within a job.
Fields§
§exit_code: Option<i64>
The exit code to return upon completion.
reason: Option<String>
A short (255 max characters) human-readable string to provide additional details about a running or stopped container.
Trait Implementations§
Source§impl Clone for ContainerSummary
impl Clone for ContainerSummary
Source§fn clone(&self) -> ContainerSummary
fn clone(&self) -> ContainerSummary
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ContainerSummary
impl Debug for ContainerSummary
Source§impl Default for ContainerSummary
impl Default for ContainerSummary
Source§fn default() -> ContainerSummary
fn default() -> ContainerSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContainerSummary
impl<'de> Deserialize<'de> for ContainerSummary
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
Source§impl PartialEq for ContainerSummary
impl PartialEq for ContainerSummary
impl StructuralPartialEq for ContainerSummary
Auto Trait Implementations§
impl Freeze for ContainerSummary
impl RefUnwindSafe for ContainerSummary
impl Send for ContainerSummary
impl Sync for ContainerSummary
impl Unpin for ContainerSummary
impl UnwindSafe for ContainerSummary
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