#[repr(i32)]pub enum PressedMessageBoxButton {
Ok = 1,
Cancel = 2,
Abort = 3,
Retry = 4,
Ignore = 5,
Yes = 6,
No = 7,
TryAgain = 10,
Continue = 11,
Other(i32),
}Available on crate feature
ui only.Variants§
Ok = 1
Cancel = 2
Abort = 3
Retry = 4
Ignore = 5
Yes = 6
No = 7
TryAgain = 10
Continue = 11
Other(i32)
Trait Implementations§
Source§impl Clone for PressedMessageBoxButton
impl Clone for PressedMessageBoxButton
Source§fn clone(&self) -> PressedMessageBoxButton
fn clone(&self) -> PressedMessageBoxButton
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PressedMessageBoxButton
Source§impl Debug for PressedMessageBoxButton
impl Debug for PressedMessageBoxButton
impl Eq for PressedMessageBoxButton
Source§impl From<i32> for PressedMessageBoxButton
impl From<i32> for PressedMessageBoxButton
Source§impl PartialEq for PressedMessageBoxButton
impl PartialEq for PressedMessageBoxButton
Source§fn eq(&self, other: &PressedMessageBoxButton) -> bool
fn eq(&self, other: &PressedMessageBoxButton) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PressedMessageBoxButton
Auto Trait Implementations§
impl Freeze for PressedMessageBoxButton
impl RefUnwindSafe for PressedMessageBoxButton
impl Send for PressedMessageBoxButton
impl Sync for PressedMessageBoxButton
impl Unpin for PressedMessageBoxButton
impl UnsafeUnpin for PressedMessageBoxButton
impl UnwindSafe for PressedMessageBoxButton
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