pub struct Openat2Args {
pub dirfd: RawFd,
pub pathname: InspectResult<PathBuf>,
pub how: InspectResult<open_how>,
pub size: size_t,
}Fields§
§dirfd: RawFd§pathname: InspectResult<PathBuf>§how: InspectResult<open_how>§size: size_tTrait Implementations§
Source§impl Clone for Openat2Args
impl Clone for Openat2Args
Source§fn clone(&self) -> Openat2Args
fn clone(&self) -> Openat2Args
Returns a duplicate of the value. Read more
1.0.0 · 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 Openat2Args
impl Debug for Openat2Args
Source§impl From<Openat2Args> for SyscallArgs
impl From<Openat2Args> for SyscallArgs
Source§fn from(args: Openat2Args) -> Self
fn from(args: Openat2Args) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Openat2Args
impl PartialEq for Openat2Args
Source§impl SyscallGroupsGetter for Openat2Args
impl SyscallGroupsGetter for Openat2Args
fn syscall_groups(&self) -> BitFlags<SyscallGroups>
Source§impl SyscallNumber for Openat2Args
impl SyscallNumber for Openat2Args
fn syscall_number(&self) -> isize
impl StructuralPartialEq for Openat2Args
Auto Trait Implementations§
impl Freeze for Openat2Args
impl RefUnwindSafe for Openat2Args
impl Send for Openat2Args
impl Sync for Openat2Args
impl Unpin for Openat2Args
impl UnwindSafe for Openat2Args
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