pub enum PermissionState {
Default,
Granted,
Denied,
}Expand description
Notification permission states as exposed by the Web Notifications API.
Variants§
Default
The user has not decided whether to allow notifications.
Granted
The user granted notification permissions.
Denied
The user denied notification permissions.
Trait Implementations§
Source§impl Clone for PermissionState
impl Clone for PermissionState
Source§fn clone(&self) -> PermissionState
fn clone(&self) -> PermissionState
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PermissionState
impl Debug for PermissionState
Source§impl PartialEq for PermissionState
impl PartialEq for PermissionState
impl Copy for PermissionState
impl Eq for PermissionState
impl StructuralPartialEq for PermissionState
Auto Trait Implementations§
impl Freeze for PermissionState
impl RefUnwindSafe for PermissionState
impl Send for PermissionState
impl Sync for PermissionState
impl Unpin for PermissionState
impl UnwindSafe for PermissionState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.