Enum win_msgbox::AbortRetryIgnore
source · 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 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 AbortRetryIgnore
impl Debug for AbortRetryIgnore
source§impl From<i32> for AbortRetryIgnore
impl From<i32> for AbortRetryIgnore
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 AbortRetryIgnore
impl Hash for AbortRetryIgnore
source§impl Options for AbortRetryIgnore
impl Options for AbortRetryIgnore
source§fn flags() -> MESSAGEBOX_STYLE
fn flags() -> MESSAGEBOX_STYLE
The flags this option requires to be shown.
source§impl PartialEq<AbortRetryIgnore> for AbortRetryIgnore
impl PartialEq<AbortRetryIgnore> for AbortRetryIgnore
source§fn eq(&self, other: &AbortRetryIgnore) -> bool
fn eq(&self, other: &AbortRetryIgnore) -> bool
This method tests for
self and other values to be equal, and is used
by ==.