pub enum LocalNotificationStatus {
Posted,
Scheduled,
Suppressed,
}Expand description
What notification_show did with the request.
Variants§
Posted
Handed to the OS for display now. Not a receipt that anyone read it.
Scheduled
Queued with the OS for deliver_at_ms.
Suppressed
Immediate show while the product is frontmost: nothing was posted.
Implementations§
Trait Implementations§
Source§impl Clone for LocalNotificationStatus
impl Clone for LocalNotificationStatus
impl Copy for LocalNotificationStatus
Source§impl Debug for LocalNotificationStatus
impl Debug for LocalNotificationStatus
impl Eq for LocalNotificationStatus
Source§impl PartialEq for LocalNotificationStatus
impl PartialEq for LocalNotificationStatus
impl StructuralPartialEq for LocalNotificationStatus
Auto Trait Implementations§
impl Freeze for LocalNotificationStatus
impl RefUnwindSafe for LocalNotificationStatus
impl Send for LocalNotificationStatus
impl Sync for LocalNotificationStatus
impl Unpin for LocalNotificationStatus
impl UnsafeUnpin for LocalNotificationStatus
impl UnwindSafe for LocalNotificationStatus
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