pub enum DesktopBannerOutcome {
Action {
id: String,
action: String,
},
Dismissed {
id: String,
},
TimedOut {
id: String,
},
Replaced {
id: String,
},
}Expand description
How a desktop banner finished. Failures to present are errors, not this.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for DesktopBannerOutcome
impl Clone for DesktopBannerOutcome
Source§impl Debug for DesktopBannerOutcome
impl Debug for DesktopBannerOutcome
impl Eq for DesktopBannerOutcome
Source§impl PartialEq for DesktopBannerOutcome
impl PartialEq for DesktopBannerOutcome
impl StructuralPartialEq for DesktopBannerOutcome
Auto Trait Implementations§
impl Freeze for DesktopBannerOutcome
impl RefUnwindSafe for DesktopBannerOutcome
impl Send for DesktopBannerOutcome
impl Sync for DesktopBannerOutcome
impl Unpin for DesktopBannerOutcome
impl UnsafeUnpin for DesktopBannerOutcome
impl UnwindSafe for DesktopBannerOutcome
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more