pub enum FdKind {
EpollCtl,
Acceptor,
Recv,
Send,
RecvSend,
}Expand description
Type of Fd mainly used by the safe API
Variants§
EpollCtl
Epoll ctl handle
Acceptor
Acceptor handle
Recv
Recv Handle
Send
Send handle
RecvSend
Recv-Send Handle
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FdKind
impl RefUnwindSafe for FdKind
impl Send for FdKind
impl Sync for FdKind
impl Unpin for FdKind
impl UnwindSafe for FdKind
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