pub enum MessageBoxResponse {
Cancel,
No,
Ok,
Retry,
Yes,
Close,
Custom(u16),
}Expand description
Response of message box.
Variants§
Trait Implementations§
Source§impl Clone for MessageBoxResponse
impl Clone for MessageBoxResponse
Source§fn clone(&self) -> MessageBoxResponse
fn clone(&self) -> MessageBoxResponse
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 MessageBoxResponse
impl Debug for MessageBoxResponse
Source§impl PartialEq for MessageBoxResponse
impl PartialEq for MessageBoxResponse
impl Copy for MessageBoxResponse
impl Eq for MessageBoxResponse
impl StructuralPartialEq for MessageBoxResponse
Auto Trait Implementations§
impl Freeze for MessageBoxResponse
impl RefUnwindSafe for MessageBoxResponse
impl Send for MessageBoxResponse
impl Sync for MessageBoxResponse
impl Unpin for MessageBoxResponse
impl UnwindSafe for MessageBoxResponse
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