Struct winapi::um::minwinbase::WIN32_FIND_DATAA
source · [−]#[repr(C)]pub struct WIN32_FIND_DATAA {
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: [CHAR; 260],
pub cAlternateFileName: [CHAR; 14],
}
Fields
dwFileAttributes: DWORD
ftCreationTime: FILETIME
ftLastAccessTime: FILETIME
ftLastWriteTime: FILETIME
nFileSizeHigh: DWORD
nFileSizeLow: DWORD
dwReserved0: DWORD
dwReserved1: DWORD
cFileName: [CHAR; 260]
cAlternateFileName: [CHAR; 14]
Trait Implementations
sourceimpl Clone for WIN32_FIND_DATAA
impl Clone for WIN32_FIND_DATAA
sourcefn clone(&self) -> WIN32_FIND_DATAA
fn clone(&self) -> WIN32_FIND_DATAA
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for WIN32_FIND_DATAA
Auto Trait Implementations
impl RefUnwindSafe for WIN32_FIND_DATAA
impl Send for WIN32_FIND_DATAA
impl Sync for WIN32_FIND_DATAA
impl Unpin for WIN32_FIND_DATAA
impl UnwindSafe for WIN32_FIND_DATAA
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more