pub struct ContainerRemoveOptions {
pub remove_volumes: bool,
pub remove_links: bool,
pub force: bool,
}
Expand description
ContainerRemoveOptions holds parameters to remove containers.
Fields§
§remove_volumes: bool
§remove_links: bool
§force: bool
Trait Implementations§
Source§impl Clone for ContainerRemoveOptions
impl Clone for ContainerRemoveOptions
Source§fn clone(&self) -> ContainerRemoveOptions
fn clone(&self) -> ContainerRemoveOptions
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 ContainerRemoveOptions
impl Debug for ContainerRemoveOptions
Source§impl Default for ContainerRemoveOptions
impl Default for ContainerRemoveOptions
Source§fn default() -> ContainerRemoveOptions
fn default() -> ContainerRemoveOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ContainerRemoveOptions
impl RefUnwindSafe for ContainerRemoveOptions
impl Send for ContainerRemoveOptions
impl Sync for ContainerRemoveOptions
impl Unpin for ContainerRemoveOptions
impl UnwindSafe for ContainerRemoveOptions
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