pub struct GetOutput {
pub err_data: Option<String>,
pub err_truncated: Option<bool>,
pub exitcode: Option<u64>,
pub exited: bool,
pub out_data: Option<String>,
pub out_truncated: Option<bool>,
pub signal: Option<u64>,
pub additional_properties: HashMap<String, Value>,
}
Fields§
§err_data: Option<String>
stderr of the process
err_truncated: Option<bool>
true if stderr was not fully captured
exitcode: Option<u64>
process exit code if it was normally terminated.
exited: bool
Tells if the given command has exited yet.
out_data: Option<String>
stdout of the process
out_truncated: Option<bool>
true if stdout was not fully captured
signal: Option<u64>
signal number or exception code if the process was abnormally terminated.
additional_properties: HashMap<String, Value>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GetOutput
impl<'de> Deserialize<'de> for GetOutput
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 GetOutput
impl RefUnwindSafe for GetOutput
impl Send for GetOutput
impl Sync for GetOutput
impl Unpin for GetOutput
impl UnwindSafe for GetOutput
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