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