pub struct OutcomeExit {
pub exit_code: i64,
pub type_: String,
}Expand description
Indicates that the shell commands finished and returned an exit code.
Fields§
§exit_code: i64The exit code returned by the shell process.
type_: StringThe outcome type. Always exit.
Trait Implementations§
Source§impl Clone for OutcomeExit
impl Clone for OutcomeExit
Source§fn clone(&self) -> OutcomeExit
fn clone(&self) -> OutcomeExit
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 OutcomeExit
impl Debug for OutcomeExit
Source§impl<'de> Deserialize<'de> for OutcomeExit
impl<'de> Deserialize<'de> for OutcomeExit
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 OutcomeExit
impl RefUnwindSafe for OutcomeExit
impl Send for OutcomeExit
impl Sync for OutcomeExit
impl Unpin for OutcomeExit
impl UnsafeUnpin for OutcomeExit
impl UnwindSafe for OutcomeExit
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