pub enum CancelTryAgainContinue {
Cancel,
TryAgain,
Continue,
}Expand description
The message box contains three push buttons: Cancel, Try Again, Continue. Use this message box type instead of AbortRetryIgnore.
Variants§
Cancel
The Cancel button was selected.
TryAgain
The Try Again button was selected.
Continue
The Continue button was selected.
Trait Implementations§
source§impl Clone for CancelTryAgainContinue
impl Clone for CancelTryAgainContinue
source§fn clone(&self) -> CancelTryAgainContinue
fn clone(&self) -> CancelTryAgainContinue
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 CancelTryAgainContinue
impl Debug for CancelTryAgainContinue
source§impl From<i32> for CancelTryAgainContinue
impl From<i32> for CancelTryAgainContinue
source§fn from(value: MESSAGEBOX_RESULT) -> Self
fn from(value: MESSAGEBOX_RESULT) -> Self
Converts to this type from the input type.
source§impl Hash for CancelTryAgainContinue
impl Hash for CancelTryAgainContinue
source§impl Options for CancelTryAgainContinue
impl Options for CancelTryAgainContinue
source§fn flags() -> MESSAGEBOX_STYLE
fn flags() -> MESSAGEBOX_STYLE
The flags this option requires to be shown.
source§impl PartialEq<CancelTryAgainContinue> for CancelTryAgainContinue
impl PartialEq<CancelTryAgainContinue> for CancelTryAgainContinue
source§fn eq(&self, other: &CancelTryAgainContinue) -> bool
fn eq(&self, other: &CancelTryAgainContinue) -> bool
This method tests for
self and other values to be equal, and is used
by ==.