pub trait IAccessoryNotificationTriggerDetails_Impl: Sized {
    // Required methods
    fn TimeCreated(&self) -> Result<DateTime>;
    fn AppDisplayName(&self) -> Result<HSTRING>;
    fn AppId(&self) -> Result<HSTRING>;
    fn AccessoryNotificationType(&self) -> Result<AccessoryNotificationType>;
    fn StartedProcessing(&self) -> Result<bool>;
    fn SetStartedProcessing(&self, value: bool) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§