Struct win_sys::FileSystem::WIN32_FIND_DATAA
source · [−]#[repr(C)]pub struct WIN32_FIND_DATAA {
pub dwFileAttributes: u32,
pub ftCreationTime: FILETIME,
pub ftLastAccessTime: FILETIME,
pub ftLastWriteTime: FILETIME,
pub nFileSizeHigh: u32,
pub nFileSizeLow: u32,
pub dwReserved0: u32,
pub dwReserved1: u32,
pub cFileName: [CHAR; 260],
pub cAlternateFileName: [CHAR; 14],
}Expand description
Required features: ‘Win32_Storage_FileSystem’, ‘Win32_Foundation’
Fields
dwFileAttributes: u32ftCreationTime: FILETIMEftLastAccessTime: FILETIMEftLastWriteTime: FILETIMEnFileSizeHigh: u32nFileSizeLow: u32dwReserved0: u32dwReserved1: u32cFileName: [CHAR; 260]cAlternateFileName: [CHAR; 14]Trait Implementations
sourceimpl Clone for WIN32_FIND_DATAA
impl Clone for WIN32_FIND_DATAA
sourcepub fn clone(&self) -> WIN32_FIND_DATAA
pub 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
sourceimpl Debug for WIN32_FIND_DATAA
impl Debug for WIN32_FIND_DATAA
sourceimpl Default for WIN32_FIND_DATAA
impl Default for WIN32_FIND_DATAA
sourcepub fn default() -> WIN32_FIND_DATAA
pub fn default() -> WIN32_FIND_DATAA
Returns the “default value” for a type. Read more
sourceimpl PartialEq<WIN32_FIND_DATAA> for WIN32_FIND_DATAA
impl PartialEq<WIN32_FIND_DATAA> for WIN32_FIND_DATAA
impl Copy for WIN32_FIND_DATAA
impl Eq 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 · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more