#[repr(C)]pub struct _WIN32_FIND_DATAW {
pub dwFileAttributes: DWORD,
pub ftCreationTime: FILETIME,
pub ftLastAccessTime: FILETIME,
pub ftLastWriteTime: FILETIME,
pub nFileSizeHigh: DWORD,
pub nFileSizeLow: DWORD,
pub dwReserved0: DWORD,
pub dwReserved1: DWORD,
pub cFileName: [WCHAR; 260],
pub cAlternateFileName: [WCHAR; 14],
}
Fields§
§dwFileAttributes: DWORD
§ftCreationTime: FILETIME
§ftLastAccessTime: FILETIME
§ftLastWriteTime: FILETIME
§nFileSizeHigh: DWORD
§nFileSizeLow: DWORD
§dwReserved0: DWORD
§dwReserved1: DWORD
§cFileName: [WCHAR; 260]
§cAlternateFileName: [WCHAR; 14]
Trait Implementations§
Source§impl Clone for _WIN32_FIND_DATAW
impl Clone for _WIN32_FIND_DATAW
Source§fn clone(&self) -> _WIN32_FIND_DATAW
fn clone(&self) -> _WIN32_FIND_DATAW
Returns a copy 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 _WIN32_FIND_DATAW
impl Debug for _WIN32_FIND_DATAW
Source§impl Ord for _WIN32_FIND_DATAW
impl Ord for _WIN32_FIND_DATAW
Source§fn cmp(&self, other: &_WIN32_FIND_DATAW) -> Ordering
fn cmp(&self, other: &_WIN32_FIND_DATAW) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for _WIN32_FIND_DATAW
impl PartialEq for _WIN32_FIND_DATAW
Source§impl PartialOrd for _WIN32_FIND_DATAW
impl PartialOrd for _WIN32_FIND_DATAW
impl Copy for _WIN32_FIND_DATAW
impl Eq for _WIN32_FIND_DATAW
impl StructuralPartialEq for _WIN32_FIND_DATAW
Auto Trait Implementations§
impl Freeze for _WIN32_FIND_DATAW
impl RefUnwindSafe for _WIN32_FIND_DATAW
impl Send for _WIN32_FIND_DATAW
impl Sync for _WIN32_FIND_DATAW
impl Unpin for _WIN32_FIND_DATAW
impl UnwindSafe for _WIN32_FIND_DATAW
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