pub enum NotificationIconId {
Simple(u16),
GUID(GUID),
}
Available on crate feature
ui
only.Expand description
Notification icon ID given to the Windows API.
Variants§
Simple(u16)
A simple ID.
GUID(GUID)
A GUID that allows Windows to track the icon between applidation restarts.
This way the user can set preferences for icon visibility and position.
Trait Implementations§
Source§impl Clone for NotificationIconId
impl Clone for NotificationIconId
Source§fn clone(&self) -> NotificationIconId
fn clone(&self) -> NotificationIconId
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 NotificationIconId
impl Debug for NotificationIconId
Source§impl Default for NotificationIconId
impl Default for NotificationIconId
Source§impl PartialEq for NotificationIconId
impl PartialEq for NotificationIconId
impl Copy for NotificationIconId
impl Eq for NotificationIconId
impl StructuralPartialEq for NotificationIconId
Auto Trait Implementations§
impl Freeze for NotificationIconId
impl RefUnwindSafe for NotificationIconId
impl Send for NotificationIconId
impl Sync for NotificationIconId
impl Unpin for NotificationIconId
impl UnwindSafe for NotificationIconId
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