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