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