pub enum FdImplementor {
File(File),
TcpStream(TcpStream),
TcpListener(TcpListener),
UdpSocket(UdpSocket),
UnixStream(UnixStream),
UnixListener(UnixListener),
UnixDatagram(UnixDatagram),
}Variants§
File(File)
TcpStream(TcpStream)
TcpListener(TcpListener)
UdpSocket(UdpSocket)
UnixStream(UnixStream)
UnixListener(UnixListener)
UnixDatagram(UnixDatagram)
Auto Trait Implementations§
impl Freeze for FdImplementor
impl RefUnwindSafe for FdImplementor
impl Send for FdImplementor
impl Sync for FdImplementor
impl Unpin for FdImplementor
impl UnsafeUnpin for FdImplementor
impl UnwindSafe for FdImplementor
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