pub struct UtimensatArgs {
pub dirfd: RawFd,
pub pathname: InspectResult<PathBuf>,
pub times: Result<Option<[timespec; 2]>, InspectError<Vec<timespec>>>,
pub flags: c_int,
}Fields§
§dirfd: RawFd§pathname: InspectResult<PathBuf>§times: Result<Option<[timespec; 2]>, InspectError<Vec<timespec>>>§flags: c_intTrait Implementations§
Source§impl Clone for UtimensatArgs
impl Clone for UtimensatArgs
Source§fn clone(&self) -> UtimensatArgs
fn clone(&self) -> UtimensatArgs
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 UtimensatArgs
impl Debug for UtimensatArgs
Source§impl From<UtimensatArgs> for SyscallArgs
impl From<UtimensatArgs> for SyscallArgs
Source§fn from(args: UtimensatArgs) -> Self
fn from(args: UtimensatArgs) -> Self
Converts to this type from the input type.
Source§impl PartialEq for UtimensatArgs
impl PartialEq for UtimensatArgs
Source§impl SyscallGroupsGetter for UtimensatArgs
impl SyscallGroupsGetter for UtimensatArgs
fn syscall_groups(&self) -> BitFlags<SyscallGroups>
Source§impl SyscallNumber for UtimensatArgs
impl SyscallNumber for UtimensatArgs
fn syscall_number(&self) -> isize
impl StructuralPartialEq for UtimensatArgs
Auto Trait Implementations§
impl Freeze for UtimensatArgs
impl RefUnwindSafe for UtimensatArgs
impl Send for UtimensatArgs
impl Sync for UtimensatArgs
impl Unpin for UtimensatArgs
impl UnwindSafe for UtimensatArgs
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