Struct system_interface::fs::FdFlags [−][src]
pub struct FdFlags { /* fields omitted */ }Expand description
Flag definitions for use with SetFlags::set_flags.
Implementations
impl FdFlags[src]
impl FdFlags[src]pub const DSYNC: FdFlags[src]
pub const DSYNC: FdFlags[src]Write I/O operations on the file descriptor shall complete as defined by synchronized I/O data integrity completion.
pub const RSYNC: FdFlags[src]
pub const RSYNC: FdFlags[src]Read I/O operations on the file descriptor shall complete at the
same level of integrity as specified by the DSYNC and SYNC flags.
pub const SYNC: FdFlags[src]
pub const SYNC: FdFlags[src]Write I/O operations on the file descriptor shall complete as defined by synchronized I/O file integrity completion.
pub fn from_bits(bits: u32) -> Option<FdFlags>[src]
pub fn from_bits(bits: u32) -> Option<FdFlags>[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: u32) -> FdFlags[src]
pub const fn from_bits_truncate(bits: u32) -> FdFlags[src]Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub const unsafe fn from_bits_unchecked(bits: u32) -> FdFlags[src]
pub const unsafe fn from_bits_unchecked(bits: u32) -> FdFlags[src]Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
pub const fn intersects(&self, other: FdFlags) -> bool[src]
pub const fn intersects(&self, other: FdFlags) -> bool[src]Returns true if there are flags common to both self and other.
Trait Implementations
impl BitAndAssign<FdFlags> for FdFlags[src]
impl BitAndAssign<FdFlags> for FdFlags[src]fn bitand_assign(&mut self, other: FdFlags)[src]
fn bitand_assign(&mut self, other: FdFlags)[src]Disables all flags disabled in the set.
impl BitOrAssign<FdFlags> for FdFlags[src]
impl BitOrAssign<FdFlags> for FdFlags[src]fn bitor_assign(&mut self, other: FdFlags)[src]
fn bitor_assign(&mut self, other: FdFlags)[src]Adds the set of flags.
impl BitXorAssign<FdFlags> for FdFlags[src]
impl BitXorAssign<FdFlags> for FdFlags[src]fn bitxor_assign(&mut self, other: FdFlags)[src]
fn bitxor_assign(&mut self, other: FdFlags)[src]Toggles the set of flags.
impl Extend<FdFlags> for FdFlags[src]
impl Extend<FdFlags> for FdFlags[src]fn extend<T: IntoIterator<Item = FdFlags>>(&mut self, iterator: T)[src]
fn extend<T: IntoIterator<Item = FdFlags>>(&mut self, iterator: T)[src]Extends a collection with the contents of an iterator. Read more
fn extend_one(&mut self, item: A)[src]
fn extend_one(&mut self, item: A)[src]extend_one)Extends a collection with exactly one element.
fn extend_reserve(&mut self, additional: usize)[src]
fn extend_reserve(&mut self, additional: usize)[src]extend_one)Reserves capacity in a collection for the given number of additional elements. Read more
impl FromIterator<FdFlags> for FdFlags[src]
impl FromIterator<FdFlags> for FdFlags[src]impl Ord for FdFlags[src]
impl Ord for FdFlags[src]impl PartialOrd<FdFlags> for FdFlags[src]
impl PartialOrd<FdFlags> for FdFlags[src]fn partial_cmp(&self, other: &FdFlags) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &FdFlags) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl SubAssign<FdFlags> for FdFlags[src]
impl SubAssign<FdFlags> for FdFlags[src]fn sub_assign(&mut self, other: FdFlags)[src]
fn sub_assign(&mut self, other: FdFlags)[src]Disables all flags enabled in the set.
impl Copy for FdFlags[src]
impl Eq for FdFlags[src]
impl StructuralEq for FdFlags[src]
impl StructuralPartialEq for FdFlags[src]
Auto Trait Implementations
impl RefUnwindSafe for FdFlags
impl Send for FdFlags
impl Sync for FdFlags
impl Unpin for FdFlags
impl UnwindSafe for FdFlags
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more