windows::Win32::Storage::OfflineFiles

Trait IOfflineFilesFileSysInfo_Impl

pub trait IOfflineFilesFileSysInfo_Impl: IUnknownImpl {
    // Required methods
    fn GetAttributes(&self, copy: OFFLINEFILES_ITEM_COPY) -> Result<u32>;
    fn GetTimes(
        &self,
        copy: OFFLINEFILES_ITEM_COPY,
        pftcreationtime: *mut FILETIME,
        pftlastwritetime: *mut FILETIME,
        pftchangetime: *mut FILETIME,
        pftlastaccesstime: *mut FILETIME,
    ) -> Result<()>;
    fn GetFileSize(&self, copy: OFFLINEFILES_ITEM_COPY) -> Result<i64>;
}

Required Methods§

fn GetAttributes(&self, copy: OFFLINEFILES_ITEM_COPY) -> Result<u32>

fn GetTimes( &self, copy: OFFLINEFILES_ITEM_COPY, pftcreationtime: *mut FILETIME, pftlastwritetime: *mut FILETIME, pftchangetime: *mut FILETIME, pftlastaccesstime: *mut FILETIME, ) -> Result<()>

fn GetFileSize(&self, copy: OFFLINEFILES_ITEM_COPY) -> Result<i64>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§