pub struct PathFlags { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl BitAndAssign for PathFlags
impl BitAndAssign for PathFlags
Source§fn bitand_assign(&mut self, rhs: PathFlags)
fn bitand_assign(&mut self, rhs: PathFlags)
Performs the
&=
operation. Read moreSource§impl BitOrAssign for PathFlags
impl BitOrAssign for PathFlags
Source§fn bitor_assign(&mut self, rhs: PathFlags)
fn bitor_assign(&mut self, rhs: PathFlags)
Performs the
|=
operation. Read moreSource§impl BitXorAssign for PathFlags
impl BitXorAssign for PathFlags
Source§fn bitxor_assign(&mut self, rhs: PathFlags)
fn bitxor_assign(&mut self, rhs: PathFlags)
Performs the
^=
operation. Read moreSource§impl From<Lookupflags> for PathFlags
Available on crate feature preview1
only.
impl From<Lookupflags> for PathFlags
Available on crate feature
preview1
only.Source§fn from(flags: Lookupflags) -> Self
fn from(flags: Lookupflags) -> Self
Converts to this type from the input type.
impl ComponentType for PathFlags
impl Copy for PathFlags
impl Eq for PathFlags
impl Lift for PathFlags
impl Lower for PathFlags
Auto Trait Implementations§
impl Freeze for PathFlags
impl RefUnwindSafe for PathFlags
impl Send for PathFlags
impl Sync for PathFlags
impl Unpin for PathFlags
impl UnwindSafe for PathFlags
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> GetSetFdFlags for T
impl<T> GetSetFdFlags for T
Source§fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
Query the “status” flags for the
self
file descriptor.Source§fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike,
fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike,
Source§fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
Set the “status” flags for the
self
file descriptor. Read more