pub trait IOfflineFilesChangeInfo_Impl: Sized {
    // Required methods
    fn IsDirty(&self, pbdirty: *mut BOOL) -> HRESULT;
    fn IsDeletedOffline(&self) -> Result<BOOL>;
    fn IsCreatedOffline(&self) -> Result<BOOL>;
    fn IsLocallyModifiedData(&self) -> Result<BOOL>;
    fn IsLocallyModifiedAttributes(&self) -> Result<BOOL>;
    fn IsLocallyModifiedTime(&self) -> Result<BOOL>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§