Trait IMessageView_Impl
pub trait IMessageView_Impl: IUnknownImpl {
// Required methods
fn SetTitleText(&self, psztitletext: &PCWSTR) -> Result<()>;
fn SetBodyText(&self, pszbodytext: &PCWSTR) -> Result<()>;
fn SetIcon(&self, id: IconIdentifier) -> Result<()>;
fn Clear(&self) -> Result<()>;
}
Required Methods§
fn SetTitleText(&self, psztitletext: &PCWSTR) -> Result<()>
fn SetBodyText(&self, pszbodytext: &PCWSTR) -> Result<()>
fn SetIcon(&self, id: IconIdentifier) -> Result<()>
fn Clear(&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.