pub struct ContainerWaitOKBody {
pub error: Option<Vec<String>>,
pub status_code: i64,
}
Expand description
ContainerWaitOKBody OK response to ContainerWait operation.
Fields§
§error: Option<Vec<String>>
Error.
status_code: i64
Exit code of the container.
Trait Implementations§
Source§impl Clone for ContainerWaitOKBody
impl Clone for ContainerWaitOKBody
Source§fn clone(&self) -> ContainerWaitOKBody
fn clone(&self) -> ContainerWaitOKBody
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 ContainerWaitOKBody
impl Debug for ContainerWaitOKBody
Source§impl<'de> Deserialize<'de> for ContainerWaitOKBody
impl<'de> Deserialize<'de> for ContainerWaitOKBody
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 ContainerWaitOKBody
impl RefUnwindSafe for ContainerWaitOKBody
impl Send for ContainerWaitOKBody
impl Sync for ContainerWaitOKBody
impl Unpin for ContainerWaitOKBody
impl UnwindSafe for ContainerWaitOKBody
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