Enum e_utils::dialog::MessageDialogButtons
source · #[non_exhaustive]pub enum MessageDialogButtons {
Ok,
OkCancel,
YesNo,
OkWithLabel(String),
OkCancelWithLabels(String, String),
}Expand description
Options for action buttons on message dialogs.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Ok
Ok button.
OkCancel
Ok and Cancel buttons.
YesNo
Yes and No buttons.
OkWithLabel(String)
OK button with customized text.
OkCancelWithLabels(String, String)
Ok and Cancel buttons with customized text.
Trait Implementations§
source§impl Clone for MessageDialogButtons
impl Clone for MessageDialogButtons
source§fn clone(&self) -> MessageDialogButtons
fn clone(&self) -> MessageDialogButtons
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 MessageDialogButtons
impl Debug for MessageDialogButtons
source§impl From<MessageDialogButtons> for MessageButtons
impl From<MessageDialogButtons> for MessageButtons
source§fn from(kind: MessageDialogButtons) -> Self
fn from(kind: MessageDialogButtons) -> Self
Converts to this type from the input type.
source§impl Hash for MessageDialogButtons
impl Hash for MessageDialogButtons
source§impl PartialEq for MessageDialogButtons
impl PartialEq for MessageDialogButtons
impl Eq for MessageDialogButtons
impl StructuralPartialEq for MessageDialogButtons
Auto Trait Implementations§
impl Freeze for MessageDialogButtons
impl RefUnwindSafe for MessageDialogButtons
impl Send for MessageDialogButtons
impl Sync for MessageDialogButtons
impl Unpin for MessageDialogButtons
impl UnwindSafe for MessageDialogButtons
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more