windows::Win32::System::Ole

Trait IOleUndoUnit_Impl

pub trait IOleUndoUnit_Impl: IUnknownImpl {
    // Required methods
    fn Do(&self, pundomanager: Ref<'_, IOleUndoManager>) -> Result<()>;
    fn GetDescription(&self) -> Result<BSTR>;
    fn GetUnitType(&self, pclsid: *mut GUID, plid: *mut i32) -> Result<()>;
    fn OnNextAdd(&self) -> Result<()>;
}

Required Methods§

fn Do(&self, pundomanager: Ref<'_, IOleUndoManager>) -> Result<()>

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

fn GetUnitType(&self, pclsid: *mut GUID, plid: *mut i32) -> Result<()>

fn OnNextAdd(&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.

Implementors§