Struct native_windows_gui::constants::MessageParams
[−]
[src]
pub struct MessageParams<'a> {
pub title: &'a str,
pub content: &'a str,
pub buttons: MessageButtons,
pub icons: MessageIcons,
}A structure that defines how a messagebox should look and behave.
Members:
title: The title of the message boxcontent: The message of the message boxbuttons: The button of the message boxicons: The message box icon
Fields
title: &'a str
content: &'a str
icons: MessageIcons
Trait Implementations
impl<'a> Clone for MessageParams<'a>[src]
fn clone(&self) -> MessageParams<'a>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl<'a> PartialEq for MessageParams<'a>[src]
fn eq(&self, __arg_0: &MessageParams<'a>) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &MessageParams<'a>) -> bool
This method tests for !=.