[][src]Union nc::types::io_uring_sqe_other_flags_t

#[repr(C)]pub union io_uring_sqe_other_flags_t {
    pub rw_flags: rwf_t,
    pub fsync_flags: u32,
    pub poll_events: u16,
    pub sync_range_flags: u32,
    pub msg_flags: u32,
    pub timeout_flags: u32,
    pub accept_flags: u32,
    pub cancel_flags: u32,
    pub open_flags: u32,
    pub statx_flags: u32,
    pub fadvise_advice: u32,
    pub splice_flags: u32,
}

Fields

rw_flags: rwf_tfsync_flags: u32poll_events: u16sync_range_flags: u32msg_flags: u32timeout_flags: u32accept_flags: u32cancel_flags: u32open_flags: u32statx_flags: u32fadvise_advice: u32splice_flags: u32

Trait Implementations

impl Clone for io_uring_sqe_other_flags_t[src]

impl Copy for io_uring_sqe_other_flags_t[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.