pub struct OutputOutcomeExit {
pub exit_code: i64,
pub type_: String,
}Expand description
Indicates that the shell commands finished and returned an exit code.
Fields§
§exit_code: i64Exit code from the shell process.
type_: StringThe outcome type. Always exit.
Trait Implementations§
Source§impl Clone for OutputOutcomeExit
impl Clone for OutputOutcomeExit
Source§fn clone(&self) -> OutputOutcomeExit
fn clone(&self) -> OutputOutcomeExit
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OutputOutcomeExit
impl Debug for OutputOutcomeExit
Source§impl<'de> Deserialize<'de> for OutputOutcomeExit
impl<'de> Deserialize<'de> for OutputOutcomeExit
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for OutputOutcomeExit
impl RefUnwindSafe for OutputOutcomeExit
impl Send for OutputOutcomeExit
impl Sync for OutputOutcomeExit
impl Unpin for OutputOutcomeExit
impl UnsafeUnpin for OutputOutcomeExit
impl UnwindSafe for OutputOutcomeExit
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