Trait ICommandText_Impl
pub trait ICommandText_Impl: ICommand_Impl {
// Required methods
fn GetCommandText(
&self,
pguiddialect: *mut GUID,
ppwszcommand: *mut PWSTR,
) -> Result<()>;
fn SetCommandText(
&self,
rguiddialect: *const GUID,
pwszcommand: &PCWSTR,
) -> Result<()>;
}
Required Methods§
fn GetCommandText( &self, pguiddialect: *mut GUID, ppwszcommand: *mut PWSTR, ) -> Result<()>
fn SetCommandText( &self, rguiddialect: *const GUID, pwszcommand: &PCWSTR, ) -> 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.