pub struct ComposeUpResult {
pub output: ComposeOutput,
pub services: Vec<String>,
pub detached: bool,
}
Expand description
Result from compose up command
Fields§
§output: ComposeOutput
Raw command output
services: Vec<String>
Services that were started
detached: bool
Whether running in detached mode
Implementations§
Trait Implementations§
Source§impl Clone for ComposeUpResult
impl Clone for ComposeUpResult
Source§fn clone(&self) -> ComposeUpResult
fn clone(&self) -> ComposeUpResult
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 ComposeUpResult
impl RefUnwindSafe for ComposeUpResult
impl Send for ComposeUpResult
impl Sync for ComposeUpResult
impl Unpin for ComposeUpResult
impl UnwindSafe for ComposeUpResult
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