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