pub struct StopContainerParameter {
pub container_name: String,
pub all: Option<bool>,
pub ignore: Option<bool>,
pub timeout: Option<u32>,
}Fields§
§container_name: String§all: Option<bool>§ignore: Option<bool>§timeout: Option<u32>Trait Implementations§
Source§impl Clone for StopContainerParameter
impl Clone for StopContainerParameter
Source§fn clone(&self) -> StopContainerParameter
fn clone(&self) -> StopContainerParameter
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StopContainerParameter
impl Debug for StopContainerParameter
Source§impl Default for StopContainerParameter
impl Default for StopContainerParameter
Source§fn default() -> StopContainerParameter
fn default() -> StopContainerParameter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StopContainerParameter
impl<'de> Deserialize<'de> for StopContainerParameter
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
impl Eq for StopContainerParameter
Source§impl PartialEq for StopContainerParameter
impl PartialEq for StopContainerParameter
Source§impl Serialize for StopContainerParameter
impl Serialize for StopContainerParameter
impl StructuralPartialEq for StopContainerParameter
Auto Trait Implementations§
impl Freeze for StopContainerParameter
impl RefUnwindSafe for StopContainerParameter
impl Send for StopContainerParameter
impl Sync for StopContainerParameter
impl Unpin for StopContainerParameter
impl UnsafeUnpin for StopContainerParameter
impl UnwindSafe for StopContainerParameter
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