pub struct ComposeDownResult {
pub stopped_containers: Vec<String>,
pub removed_containers: Vec<String>,
pub removed_networks: Vec<String>,
pub removed_volumes: Vec<String>,
}Expand description
Result of a compose down operation
Fields§
§stopped_containers: Vec<String>IDs of stopped containers
removed_containers: Vec<String>IDs of removed containers
removed_networks: Vec<String>IDs of removed networks
removed_volumes: Vec<String>Names of removed volumes
Trait Implementations§
Source§impl Clone for ComposeDownResult
impl Clone for ComposeDownResult
Source§fn clone(&self) -> ComposeDownResult
fn clone(&self) -> ComposeDownResult
Returns a duplicate 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 ComposeDownResult
impl Debug for ComposeDownResult
Auto Trait Implementations§
impl Freeze for ComposeDownResult
impl RefUnwindSafe for ComposeDownResult
impl Send for ComposeDownResult
impl Sync for ComposeDownResult
impl Unpin for ComposeDownResult
impl UnwindSafe for ComposeDownResult
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