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