Trait IFsrmObject_Impl
pub trait IFsrmObject_Impl: 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<()>
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.