pub struct FunctionShellCallOutputExitOutcomeParam {
pub exit_code: i32,
}Expand description
Indicates that the shell commands finished and returned an exit code.
Fields§
§exit_code: i32The exit code returned by the shell process.
Trait Implementations§
Source§impl Clone for FunctionShellCallOutputExitOutcomeParam
impl Clone for FunctionShellCallOutputExitOutcomeParam
Source§fn clone(&self) -> FunctionShellCallOutputExitOutcomeParam
fn clone(&self) -> FunctionShellCallOutputExitOutcomeParam
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<'de> Deserialize<'de> for FunctionShellCallOutputExitOutcomeParam
impl<'de> Deserialize<'de> for FunctionShellCallOutputExitOutcomeParam
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<FunctionShellCallOutputExitOutcomeParam, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FunctionShellCallOutputExitOutcomeParam, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for FunctionShellCallOutputExitOutcomeParam
impl Serialize for FunctionShellCallOutputExitOutcomeParam
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for FunctionShellCallOutputExitOutcomeParam
Auto Trait Implementations§
impl Freeze for FunctionShellCallOutputExitOutcomeParam
impl RefUnwindSafe for FunctionShellCallOutputExitOutcomeParam
impl Send for FunctionShellCallOutputExitOutcomeParam
impl Sync for FunctionShellCallOutputExitOutcomeParam
impl Unpin for FunctionShellCallOutputExitOutcomeParam
impl UnsafeUnpin for FunctionShellCallOutputExitOutcomeParam
impl UnwindSafe for FunctionShellCallOutputExitOutcomeParam
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