pub struct ExecStdin {
pub data: Vec<u8>,
}Expand description
Stdin data sent to a running command.
Fields§
§data: Vec<u8>The raw input data.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ExecStdin
impl<'de> Deserialize<'de> for ExecStdin
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 ExecStdin
impl RefUnwindSafe for ExecStdin
impl Send for ExecStdin
impl Sync for ExecStdin
impl Unpin for ExecStdin
impl UnsafeUnpin for ExecStdin
impl UnwindSafe for ExecStdin
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