#[repr(C)]pub struct Info<const N: usize = 0> {
pub size: u64,
pub file_size: u64,
pub physical_size: u64,
pub create_time: Time,
pub last_access_time: Time,
pub modification_time: Time,
pub attribute: u64,
pub file_name: [Char16; N],
}
Fields§
§size: u64
§file_size: u64
§physical_size: u64
§create_time: Time
§last_access_time: Time
§modification_time: Time
§attribute: u64
§file_name: [Char16; N]
Trait Implementations§
impl<const N: usize> Copy for Info<N>
Auto Trait Implementations§
impl<const N: usize> Freeze for Info<N>
impl<const N: usize> RefUnwindSafe for Info<N>
impl<const N: usize> Send for Info<N>
impl<const N: usize> Sync for Info<N>
impl<const N: usize> Unpin for Info<N>
impl<const N: usize> UnwindSafe for Info<N>
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