#[repr(u32)]pub enum MessageBoxIcon {
Information = 64,
QuestionMark = 32,
Warning = 48,
Error = 16,
}
Available on crate feature
ui
only.Variants§
Trait Implementations§
Source§impl Clone for MessageBoxIcon
impl Clone for MessageBoxIcon
Source§fn clone(&self) -> MessageBoxIcon
fn clone(&self) -> MessageBoxIcon
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 MessageBoxIcon
impl Debug for MessageBoxIcon
Source§impl Default for MessageBoxIcon
impl Default for MessageBoxIcon
Source§fn default() -> MessageBoxIcon
fn default() -> MessageBoxIcon
Returns the “default value” for a type. Read more
Source§impl From<MessageBoxIcon> for MESSAGEBOX_STYLE
impl From<MessageBoxIcon> for MESSAGEBOX_STYLE
Source§fn from(value: MessageBoxIcon) -> Self
fn from(value: MessageBoxIcon) -> Self
Converts to this type from the input type.
Source§impl From<MessageBoxIcon> for u32
impl From<MessageBoxIcon> for u32
Source§fn from(enum_value: MessageBoxIcon) -> Self
fn from(enum_value: MessageBoxIcon) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MessageBoxIcon
impl PartialEq for MessageBoxIcon
impl Copy for MessageBoxIcon
impl Eq for MessageBoxIcon
impl StructuralPartialEq for MessageBoxIcon
Auto Trait Implementations§
impl Freeze for MessageBoxIcon
impl RefUnwindSafe for MessageBoxIcon
impl Send for MessageBoxIcon
impl Sync for MessageBoxIcon
impl Unpin for MessageBoxIcon
impl UnwindSafe for MessageBoxIcon
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