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