pub struct ShellCommandLineExecuteResponse {
pub o: String,
pub ret: i32,
}Expand description
Response for ShellCommandLineExecute command
Fields§
§o: Stringcommand output
ret: i32return code from shell command execution
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ShellCommandLineExecuteResponse
impl<'de> Deserialize<'de> for ShellCommandLineExecuteResponse
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 ShellCommandLineExecuteResponse
impl PartialEq for ShellCommandLineExecuteResponse
Source§fn eq(&self, other: &ShellCommandLineExecuteResponse) -> bool
fn eq(&self, other: &ShellCommandLineExecuteResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ShellCommandLineExecuteResponse
impl StructuralPartialEq for ShellCommandLineExecuteResponse
Auto Trait Implementations§
impl Freeze for ShellCommandLineExecuteResponse
impl RefUnwindSafe for ShellCommandLineExecuteResponse
impl Send for ShellCommandLineExecuteResponse
impl Sync for ShellCommandLineExecuteResponse
impl Unpin for ShellCommandLineExecuteResponse
impl UnwindSafe for ShellCommandLineExecuteResponse
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