pub struct ForkptyResult {
pub master: OwnedFd,
pub fork_result: ForkResult,
}Expand description
Representation of a master with a forked pty
This is returned by forkpty.
Fields§
§master: OwnedFdThe master port in a virtual pty pair
fork_result: ForkResultMetadata about forked process
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ForkptyResult
impl RefUnwindSafe for ForkptyResult
impl Send for ForkptyResult
impl Sync for ForkptyResult
impl Unpin for ForkptyResult
impl UnwindSafe for ForkptyResult
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