pub enum AbortRetryIgnore {
Abort,
Retry,
Ignore,
}Expand description
The message box contains three push buttons: Abort, Retry, and Ignore.
Variants§
Abort
The Abort button was selected.
Retry
The Retry button was selected.
Ignore
The Ignore button was selected.
Trait Implementations§
Source§impl Clone for AbortRetryIgnore
impl Clone for AbortRetryIgnore
Source§fn clone(&self) -> AbortRetryIgnore
fn clone(&self) -> AbortRetryIgnore
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 AbortRetryIgnore
impl Debug for AbortRetryIgnore
Source§impl From<i32> for AbortRetryIgnore
impl From<i32> for AbortRetryIgnore
Source§impl Hash for AbortRetryIgnore
impl Hash for AbortRetryIgnore
Source§impl Options for AbortRetryIgnore
impl Options for AbortRetryIgnore
Source§impl PartialEq for AbortRetryIgnore
impl PartialEq for AbortRetryIgnore
impl Copy for AbortRetryIgnore
impl Eq for AbortRetryIgnore
impl StructuralPartialEq for AbortRetryIgnore
Auto Trait Implementations§
impl Freeze for AbortRetryIgnore
impl RefUnwindSafe for AbortRetryIgnore
impl Send for AbortRetryIgnore
impl Sync for AbortRetryIgnore
impl Unpin for AbortRetryIgnore
impl UnwindSafe for AbortRetryIgnore
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