pub struct ComposeRunResult {
pub container_id: String,
pub output: Option<String>,
pub exit_code: Option<i64>,
}Expand description
Result of a compose run operation
Fields§
§container_id: StringID of the created container
output: Option<String>Output from the command (if not detached)
exit_code: Option<i64>Exit code (if waited for)
Trait Implementations§
Source§impl Clone for ComposeRunResult
impl Clone for ComposeRunResult
Source§fn clone(&self) -> ComposeRunResult
fn clone(&self) -> ComposeRunResult
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 moreSource§impl Debug for ComposeRunResult
impl Debug for ComposeRunResult
Auto Trait Implementations§
impl Freeze for ComposeRunResult
impl RefUnwindSafe for ComposeRunResult
impl Send for ComposeRunResult
impl Sync for ComposeRunResult
impl Unpin for ComposeRunResult
impl UnwindSafe for ComposeRunResult
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