Trait IPersistStorage_Impl
pub trait IPersistStorage_Impl: IPersist_Impl {
// Required methods
fn IsDirty(&self) -> HRESULT;
fn InitNew(&self, pstg: Ref<'_, IStorage>) -> Result<()>;
fn Load(&self, pstg: Ref<'_, IStorage>) -> Result<()>;
fn Save(&self, pstgsave: Ref<'_, IStorage>, fsameasload: BOOL) -> Result<()>;
fn SaveCompleted(&self, pstgnew: Ref<'_, IStorage>) -> Result<()>;
fn HandsOffStorage(&self) -> Result<()>;
}
Required Methods§
fn IsDirty(&self) -> HRESULT
fn InitNew(&self, pstg: Ref<'_, IStorage>) -> Result<()>
fn Load(&self, pstg: Ref<'_, IStorage>) -> Result<()>
fn Save(&self, pstgsave: Ref<'_, IStorage>, fsameasload: BOOL) -> Result<()>
fn SaveCompleted(&self, pstgnew: Ref<'_, IStorage>) -> Result<()>
fn HandsOffStorage(&self) -> Result<()>
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.