pub struct Popen {
pub arg: String,
pub stdin: *mut FILE,
pub stdout: *mut FILE,
pub stderr: *mut FILE,
pub pid: Option<c_int>,
}
Fields§
§arg: String
§stdin: *mut FILE
§stdout: *mut FILE
§stderr: *mut FILE
§pid: Option<c_int>
Implementations§
Trait Implementations§
Source§impl Ord for Popen
impl Ord for Popen
Source§impl PartialOrd for Popen
impl PartialOrd for Popen
impl Eq for Popen
impl StructuralPartialEq for Popen
Auto Trait Implementations§
impl Freeze for Popen
impl RefUnwindSafe for Popen
impl !Send for Popen
impl !Sync for Popen
impl Unpin for Popen
impl UnwindSafe for Popen
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