#[repr(i32)]pub enum SigInfoCodePoll {
    POLL_IN = 1,
    POLL_OUT = 2,
    POLL_MSG = 3,
    POLL_ERR = 4,
    POLL_PRI = 5,
    POLL_HUP = 6,
}Expand description
Codes for SIGIO/SIGPOLL
Variants§
Trait Implementations§
Source§impl Clone for SigInfoCodePoll
 
impl Clone for SigInfoCodePoll
Source§fn clone(&self) -> SigInfoCodePoll
 
fn clone(&self) -> SigInfoCodePoll
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for SigInfoCodePoll
 
impl Debug for SigInfoCodePoll
Source§impl From<SigInfoCodePoll> for i32
 
impl From<SigInfoCodePoll> for i32
Source§fn from(enum_value: SigInfoCodePoll) -> Self
 
fn from(enum_value: SigInfoCodePoll) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SigInfoCodePoll
 
impl PartialEq for SigInfoCodePoll
Source§impl TryFrom<i32> for SigInfoCodePoll
 
impl TryFrom<i32> for SigInfoCodePoll
Source§type Error = TryFromPrimitiveError<SigInfoCodePoll>
 
type Error = TryFromPrimitiveError<SigInfoCodePoll>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for SigInfoCodePoll
 
impl TryFromPrimitive for SigInfoCodePoll
const NAME: &'static str = "SigInfoCodePoll"
type Primitive = i32
type Error = TryFromPrimitiveError<SigInfoCodePoll>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for SigInfoCodePoll
impl Eq for SigInfoCodePoll
impl StructuralPartialEq for SigInfoCodePoll
Auto Trait Implementations§
impl Freeze for SigInfoCodePoll
impl RefUnwindSafe for SigInfoCodePoll
impl Send for SigInfoCodePoll
impl Sync for SigInfoCodePoll
impl Unpin for SigInfoCodePoll
impl UnwindSafe for SigInfoCodePoll
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