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 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 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
impl Copy for YesNoCancel
impl Eq for YesNoCancel
impl StructuralPartialEq for YesNoCancel
Auto Trait Implementations§
impl Freeze for YesNoCancel
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