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