pub struct FileTime {
pub day: i16,
pub month: i16,
pub year: i16,
pub hour: i16,
pub minute: i16,
pub second: i16,
pub milliseconds: i16,
}Expand description
Represents the time for a file.
Fields§
§day: i16§month: i16§year: i16§hour: i16§minute: i16§second: i16§milliseconds: i16Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileTime
impl RefUnwindSafe for FileTime
impl Send for FileTime
impl Sync for FileTime
impl Unpin for FileTime
impl UnwindSafe for FileTime
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