pub enum PollInOut {
In,
Out,
InOut,
}
Variants§
In
Check whether at least one message can be received from the socket without blocking.
Out
Check whether at least one message can be sent to the fd socket without blocking.
InOut
Check whether at least one message can be sent to or received from the fd socket without blocking.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PollInOut
impl RefUnwindSafe for PollInOut
impl Send for PollInOut
impl Sync for PollInOut
impl Unpin for PollInOut
impl UnwindSafe for PollInOut
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