pub struct BlockingAlertDialog<'a> {
pub window: WindowHandle<'a>,
pub title: &'a str,
pub message: &'a str,
pub level: BlockingDialogLevel,
}Fields§
§window: WindowHandle<'a>§title: &'a str§message: &'a str§level: BlockingDialogLevelImplementations§
Source§impl<'a> BlockingAlertDialog<'a>
impl<'a> BlockingAlertDialog<'a>
pub fn show(&self) -> Result<(), BlockingDialogError>
Trait Implementations§
Source§impl<'a> Clone for BlockingAlertDialog<'a>
impl<'a> Clone for BlockingAlertDialog<'a>
Source§fn clone(&self) -> BlockingAlertDialog<'a>
fn clone(&self) -> BlockingAlertDialog<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for BlockingAlertDialog<'a>
impl<'a> RefUnwindSafe for BlockingAlertDialog<'a>
impl<'a> !Send for BlockingAlertDialog<'a>
impl<'a> !Sync for BlockingAlertDialog<'a>
impl<'a> Unpin for BlockingAlertDialog<'a>
impl<'a> UnsafeUnpin for BlockingAlertDialog<'a>
impl<'a> UnwindSafe for BlockingAlertDialog<'a>
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