Trait ICommandPersist_Impl
pub trait ICommandPersist_Impl: IUnknownImpl {
// Required methods
fn DeleteCommand(&self, pcommandid: *const DBID) -> Result<()>;
fn GetCurrentCommand(&self) -> Result<*mut DBID>;
fn LoadCommand(&self, pcommandid: *const DBID, dwflags: u32) -> Result<()>;
fn SaveCommand(&self, pcommandid: *const DBID, dwflags: u32) -> Result<()>;
}
Required Methods§
fn DeleteCommand(&self, pcommandid: *const DBID) -> Result<()>
fn GetCurrentCommand(&self) -> Result<*mut DBID>
fn LoadCommand(&self, pcommandid: *const DBID, dwflags: u32) -> Result<()>
fn SaveCommand(&self, pcommandid: *const DBID, dwflags: u32) -> 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.