pub struct Process {
pub stdin: Option<Socket>,
pub stdout: Option<Socket>,
pub stderr: Option<Socket>,
/* private fields */
}
Expand description
A process running in VTL2.
Fields§
§stdin: Option<Socket>
The standard input stream.
stdout: Option<Socket>
The standard output stream.
stderr: Option<Socket>
The standard error stream.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Process
impl !RefUnwindSafe for Process
impl Send for Process
impl Sync for Process
impl Unpin for Process
impl !UnwindSafe for Process
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