pub trait IPersistStorage_Impl: Sized + IPersist_Impl {
    // Required methods
    fn IsDirty(&self) -> HRESULT;
    fn InitNew(&self, pstg: Option<&IStorage>) -> Result<()>;
    fn Load(&self, pstg: Option<&IStorage>) -> Result<()>;
    fn Save(&self, pstgsave: Option<&IStorage>, fsameasload: BOOL) -> Result<()>;
    fn SaveCompleted(&self, pstgnew: Option<&IStorage>) -> Result<()>;
    fn HandsOffStorage(&self) -> Result<()>;
}

Required Methods§

fn IsDirty(&self) -> HRESULT

fn InitNew(&self, pstg: Option<&IStorage>) -> Result<()>

fn Load(&self, pstg: Option<&IStorage>) -> Result<()>

fn Save(&self, pstgsave: Option<&IStorage>, fsameasload: BOOL) -> Result<()>

fn SaveCompleted(&self, pstgnew: Option<&IStorage>) -> Result<()>

fn HandsOffStorage(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§