pub struct ContainerKill<'a> {
pub all: Option<bool>,
pub signal: Option<&'a str>,
}
Available on crate feature
v5
only.Fields§
§all: Option<bool>
Send kill signal to all containers
signal: Option<&'a str>
signal to be sent to container
Trait Implementations§
Source§impl<'a> Debug for ContainerKill<'a>
impl<'a> Debug for ContainerKill<'a>
Source§impl<'a> Default for ContainerKill<'a>
impl<'a> Default for ContainerKill<'a>
Source§fn default() -> ContainerKill<'a>
fn default() -> ContainerKill<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for ContainerKill<'a>
impl<'a> RefUnwindSafe for ContainerKill<'a>
impl<'a> Send for ContainerKill<'a>
impl<'a> Sync for ContainerKill<'a>
impl<'a> Unpin for ContainerKill<'a>
impl<'a> UnwindSafe for ContainerKill<'a>
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