#[repr(u32)]pub enum BalloonNotificationStandardIcon {
None = 0,
Info = 1,
Warning = 2,
Error = 3,
}
Available on crate feature
ui
only.Expand description
Built-in Windows standard icons for balloon notifications.
Variants§
Trait Implementations§
Source§impl Clone for BalloonNotificationStandardIcon
impl Clone for BalloonNotificationStandardIcon
Source§fn clone(&self) -> BalloonNotificationStandardIcon
fn clone(&self) -> BalloonNotificationStandardIcon
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 Default for BalloonNotificationStandardIcon
impl Default for BalloonNotificationStandardIcon
Source§fn default() -> BalloonNotificationStandardIcon
fn default() -> BalloonNotificationStandardIcon
Returns the “default value” for a type. Read more
Source§impl From<BalloonNotificationStandardIcon> for u32
impl From<BalloonNotificationStandardIcon> for u32
Source§fn from(enum_value: BalloonNotificationStandardIcon) -> Self
fn from(enum_value: BalloonNotificationStandardIcon) -> Self
Converts to this type from the input type.
impl Copy for BalloonNotificationStandardIcon
Auto Trait Implementations§
impl Freeze for BalloonNotificationStandardIcon
impl RefUnwindSafe for BalloonNotificationStandardIcon
impl Send for BalloonNotificationStandardIcon
impl Sync for BalloonNotificationStandardIcon
impl Unpin for BalloonNotificationStandardIcon
impl UnwindSafe for BalloonNotificationStandardIcon
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