[][src]Struct syscall::io_uring::v1::IoUringCqeFlags

pub struct IoUringCqeFlags { /* fields omitted */ }

Implementations

impl IoUringCqeFlags[src]

pub const DIRECTLY_RECEIVED: IoUringCqeFlags[src]

The command completed by directly context switching back to the consumer process.

pub const EVENT: IoUringCqeFlags[src]

This completion indicated that an event was triggered as part of the FilesUpdate opcode. In oneshot mode, a completion with this flag always comes after another completion without it (which tells that the fd subscription request was handled correctly). In multishot mode, there may be multiple completions with this flag, and the last completion is terminated with LAST_UPDATE.

pub const LAST_UPDATE: IoUringCqeFlags[src]

This completion is last one from files_update. In a multishot FilesUpdate syscall, this flag will be present on only the last item, and in oneshot the only item will also have this flag.

pub const fn empty() -> IoUringCqeFlags[src]

Returns an empty set of flags

pub const fn all() -> IoUringCqeFlags[src]

Returns the set containing all flags.

pub const fn bits(&self) -> u8[src]

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u8) -> Option<IoUringCqeFlags>[src]

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: u8) -> IoUringCqeFlags[src]

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: u8) -> IoUringCqeFlags[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool[src]

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool[src]

Returns true if all flags are currently set.

pub const fn intersects(&self, other: IoUringCqeFlags) -> bool[src]

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: IoUringCqeFlags) -> bool[src]

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: IoUringCqeFlags)[src]

Inserts the specified flags in-place.

pub fn remove(&mut self, other: IoUringCqeFlags)[src]

Removes the specified flags in-place.

pub fn toggle(&mut self, other: IoUringCqeFlags)[src]

Toggles the specified flags in-place.

pub fn set(&mut self, other: IoUringCqeFlags, value: bool)[src]

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Binary for IoUringCqeFlags[src]

impl BitAnd<IoUringCqeFlags> for IoUringCqeFlags[src]

type Output = IoUringCqeFlags

The resulting type after applying the & operator.

fn bitand(self, other: IoUringCqeFlags) -> IoUringCqeFlags[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<IoUringCqeFlags> for IoUringCqeFlags[src]

fn bitand_assign(&mut self, other: IoUringCqeFlags)[src]

Disables all flags disabled in the set.

impl BitOr<IoUringCqeFlags> for IoUringCqeFlags[src]

type Output = IoUringCqeFlags

The resulting type after applying the | operator.

fn bitor(self, other: IoUringCqeFlags) -> IoUringCqeFlags[src]

Returns the union of the two sets of flags.

impl BitOrAssign<IoUringCqeFlags> for IoUringCqeFlags[src]

fn bitor_assign(&mut self, other: IoUringCqeFlags)[src]

Adds the set of flags.

impl BitXor<IoUringCqeFlags> for IoUringCqeFlags[src]

type Output = IoUringCqeFlags

The resulting type after applying the ^ operator.

fn bitxor(self, other: IoUringCqeFlags) -> IoUringCqeFlags[src]

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign<IoUringCqeFlags> for IoUringCqeFlags[src]

fn bitxor_assign(&mut self, other: IoUringCqeFlags)[src]

Toggles the set of flags.

impl Clone for IoUringCqeFlags[src]

impl Copy for IoUringCqeFlags[src]

impl Debug for IoUringCqeFlags[src]

impl Eq for IoUringCqeFlags[src]

impl Extend<IoUringCqeFlags> for IoUringCqeFlags[src]

impl FromIterator<IoUringCqeFlags> for IoUringCqeFlags[src]

impl Hash for IoUringCqeFlags[src]

impl LowerHex for IoUringCqeFlags[src]

impl Not for IoUringCqeFlags[src]

type Output = IoUringCqeFlags

The resulting type after applying the ! operator.

fn not(self) -> IoUringCqeFlags[src]

Returns the complement of this set of flags.

impl Octal for IoUringCqeFlags[src]

impl Ord for IoUringCqeFlags[src]

impl PartialEq<IoUringCqeFlags> for IoUringCqeFlags[src]

impl PartialOrd<IoUringCqeFlags> for IoUringCqeFlags[src]

impl StructuralEq for IoUringCqeFlags[src]

impl StructuralPartialEq for IoUringCqeFlags[src]

impl Sub<IoUringCqeFlags> for IoUringCqeFlags[src]

type Output = IoUringCqeFlags

The resulting type after applying the - operator.

fn sub(self, other: IoUringCqeFlags) -> IoUringCqeFlags[src]

Returns the set difference of the two sets of flags.

impl SubAssign<IoUringCqeFlags> for IoUringCqeFlags[src]

fn sub_assign(&mut self, other: IoUringCqeFlags)[src]

Disables all flags enabled in the set.

impl UpperHex for IoUringCqeFlags[src]

Auto Trait Implementations

impl Send for IoUringCqeFlags

impl Sync for IoUringCqeFlags

impl Unpin for IoUringCqeFlags

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, 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.