#[repr(C)]pub struct utimbuf {
pub actime: time_t,
pub modtime: time_t,
}👎Deprecated
Expand description
See https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/utime.h.html.
A structure representing both access and modification times in seconds.
Times are measured in seconds since the Epoch.
Fields§
§actime: time_t👎Deprecated
Access time.
modtime: time_t👎Deprecated
Modification time.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for utimbuf
impl RefUnwindSafe for utimbuf
impl Send for utimbuf
impl Sync for utimbuf
impl Unpin for utimbuf
impl UnsafeUnpin for utimbuf
impl UnwindSafe for utimbuf
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