Searched refs:PtyInner (Results 1 – 2 of 2) sorted by relevance
26 pub(crate) struct PtyInner(OwnedFd); struct28 impl PtyInner { impl101 impl AsFd for PtyInner { implementation107 impl AsRawFd for PtyInner { implementation113 impl From<PtyInner> for OwnedFd {114 fn from(value: PtyInner) -> Self { in from()149 impl_read_write!(PtyInner);150 impl_read_write!(&PtyInner);152 impl Source for PtyInner { implementation222 let pty = PtyInner::open().unwrap(); in ut_pty_pts_size_test()[all …]
27 pub struct Pty(AsyncSource<super::sys::PtyInner>);40 let pty = super::sys::PtyInner::open()?; in new()