pub trait IMessageView_Impl: Sized {
    // 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<()>

Object Safety§

This trait is not object safe.

Implementors§