Trait ISideShowNotification_Impl
pub trait ISideShowNotification_Impl: IUnknownImpl {
// Required methods
fn NotificationId(&self) -> Result<u32>;
fn SetNotificationId(&self, in_notificationid: u32) -> Result<()>;
fn Title(&self) -> Result<PWSTR>;
fn SetTitle(&self, in_pwsztitle: &PCWSTR) -> Result<()>;
fn Message(&self) -> Result<PWSTR>;
fn SetMessage(&self, in_pwszmessage: &PCWSTR) -> Result<()>;
fn Image(&self) -> Result<HICON>;
fn SetImage(&self, in_hicon: HICON) -> Result<()>;
fn ExpirationTime(&self) -> Result<SYSTEMTIME>;
fn SetExpirationTime(&self, in_ptime: *const SYSTEMTIME) -> Result<()>;
}
Required Methods§
fn NotificationId(&self) -> Result<u32>
fn SetNotificationId(&self, in_notificationid: u32) -> Result<()>
fn Title(&self) -> Result<PWSTR>
fn SetTitle(&self, in_pwsztitle: &PCWSTR) -> Result<()>
fn Message(&self) -> Result<PWSTR>
fn SetMessage(&self, in_pwszmessage: &PCWSTR) -> Result<()>
fn Image(&self) -> Result<HICON>
fn SetImage(&self, in_hicon: HICON) -> Result<()>
fn ExpirationTime(&self) -> Result<SYSTEMTIME>
fn SetExpirationTime(&self, in_ptime: *const SYSTEMTIME) -> 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.