pub trait IFsrmObject_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Id(&self) -> Result<GUID>;
    fn Description(&self) -> Result<BSTR>;
    fn SetDescription(&self, description: &BSTR) -> Result<()>;
    fn Delete(&self) -> Result<()>;
    fn Commit(&self) -> Result<()>;
}

Required Methods§

fn Id(&self) -> Result<GUID>

fn Description(&self) -> Result<BSTR>

fn SetDescription(&self, description: &BSTR) -> Result<()>

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

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

Object Safety§

This trait is not object safe.

Implementors§