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