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