pub struct ComposeRmResult {
pub stdout: String,
pub stderr: String,
pub success: bool,
pub services: Vec<String>,
pub volumes_removed: bool,
}
Expand description
Result from compose rm command
Fields§
§stdout: String
Raw stdout output
stderr: String
Raw stderr output
success: bool
Success status
services: Vec<String>
Services that were removed
volumes_removed: bool
Whether volumes were removed
Implementations§
Trait Implementations§
Source§impl Clone for ComposeRmResult
impl Clone for ComposeRmResult
Source§fn clone(&self) -> ComposeRmResult
fn clone(&self) -> ComposeRmResult
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 moreAuto Trait Implementations§
impl Freeze for ComposeRmResult
impl RefUnwindSafe for ComposeRmResult
impl Send for ComposeRmResult
impl Sync for ComposeRmResult
impl Unpin for ComposeRmResult
impl UnwindSafe for ComposeRmResult
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