pub struct DialogInfo {
pub title: String,
pub body: String,
pub class: String,
}Expand description
What a blocking dialog was showing.
Fields§
§title: StringThe dialog’s title bar.
body: StringVisible text of the dialog’s child controls, joined by newlines. This is where a message popup’s question, or an engine error, actually appears.
class: StringWin32 class name of the window that matched. Recorded because the match is by shape rather than by class, so a caller diagnosing a false match can see what was picked up.
Trait Implementations§
Source§impl Clone for DialogInfo
impl Clone for DialogInfo
Source§fn clone(&self) -> DialogInfo
fn clone(&self) -> DialogInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DialogInfo
impl Debug for DialogInfo
impl Eq for DialogInfo
Source§impl PartialEq for DialogInfo
impl PartialEq for DialogInfo
impl StructuralPartialEq for DialogInfo
Auto Trait Implementations§
impl Freeze for DialogInfo
impl RefUnwindSafe for DialogInfo
impl Send for DialogInfo
impl Sync for DialogInfo
impl Unpin for DialogInfo
impl UnsafeUnpin for DialogInfo
impl UnwindSafe for DialogInfo
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