Enum win_msgbox::YesNoCancel
source · pub enum YesNoCancel {
Yes,
No,
Cancel,
}Expand description
The message box contains three push buttons: Yes, No, and Cancel.
Variants§
Yes
The Yes button was selected.
No
The No button was selected.
Cancel
The Cancel button was selected.
Trait Implementations§
source§impl Clone for YesNoCancel
impl Clone for YesNoCancel
source§fn clone(&self) -> YesNoCancel
fn clone(&self) -> YesNoCancel
Returns a copy 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 YesNoCancel
impl Debug for YesNoCancel
source§impl From<i32> for YesNoCancel
impl From<i32> for YesNoCancel
source§impl Hash for YesNoCancel
impl Hash for YesNoCancel
source§impl Options for YesNoCancel
impl Options for YesNoCancel
source§impl PartialEq for YesNoCancel
impl PartialEq for YesNoCancel
source§fn eq(&self, other: &YesNoCancel) -> bool
fn eq(&self, other: &YesNoCancel) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for YesNoCancel
impl Eq for YesNoCancel
impl StructuralPartialEq for YesNoCancel
Auto Trait Implementations§
impl RefUnwindSafe for YesNoCancel
impl Send for YesNoCancel
impl Sync for YesNoCancel
impl Unpin for YesNoCancel
impl UnwindSafe for YesNoCancel
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