pub struct FunctionShellCallOutputExitOutcomeParam {
pub exit_code: i32,
}Available on crate feature
response-types only.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 · 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<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
Source§impl PartialEq for FunctionShellCallOutputExitOutcomeParam
impl PartialEq for FunctionShellCallOutputExitOutcomeParam
Source§fn eq(&self, other: &FunctionShellCallOutputExitOutcomeParam) -> bool
fn eq(&self, other: &FunctionShellCallOutputExitOutcomeParam) -> bool
Tests for
self and other values to be equal, and is used by ==.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 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