[][src]Enum fpsdk::MessageBoxResult

pub enum MessageBoxResult {
    Ok,
    Cancel,
    Abort,
    Retry,
    Ignore,
    Yes,
    No,
    TryAgain,
    Continue,
    Unknown,
}

The result returned by a message box.

See https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-messagebox#return-value for more info.

Variants

Ok

The OK button was selected.

Cancel

The Cancel button was selected.

Abort

The Abort button was selected.

Retry

The Retry button was selected.

Ignore

The Ignore button was selected.

Yes

The Yes button was selected.

No

The No button was selected.

TryAgain

The Try Again button was selected.

Continue

The Continue button was selected.

Unknown

Unknown.

Trait Implementations

impl Debug for MessageBoxResult[src]

impl FromRawPtr for MessageBoxResult[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.