pub struct MountSetattrArgs {
pub dirfd: i32,
pub pathname: PathBuf,
pub flags: u32,
pub attr_set: u64,
pub attr_clr: u64,
pub propagation: u64,
pub userns_fd: u64,
pub size: size_t,
}Fields§
§dirfd: i32§pathname: PathBuf§flags: u32§attr_set: u64§attr_clr: u64§propagation: u64§userns_fd: u64§size: size_tTrait Implementations§
Source§impl Clone for MountSetattrArgs
impl Clone for MountSetattrArgs
Source§fn clone(&self) -> MountSetattrArgs
fn clone(&self) -> MountSetattrArgs
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MountSetattrArgs
impl Debug for MountSetattrArgs
impl Eq for MountSetattrArgs
Source§impl PartialEq for MountSetattrArgs
impl PartialEq for MountSetattrArgs
impl StructuralPartialEq for MountSetattrArgs
Auto Trait Implementations§
impl Freeze for MountSetattrArgs
impl RefUnwindSafe for MountSetattrArgs
impl Send for MountSetattrArgs
impl Sync for MountSetattrArgs
impl Unpin for MountSetattrArgs
impl UnsafeUnpin for MountSetattrArgs
impl UnwindSafe for MountSetattrArgs
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more