pub enum View<'a> {
Message(DialogMessage<'a>),
Alert(DialogMessage<'a>),
Browser(DialogFileBrowserOptions<'a>),
Input(InputDialog<'a>),
}
Variants§
Message(DialogMessage<'a>)
Alert(DialogMessage<'a>)
Browser(DialogFileBrowserOptions<'a>)
Input(InputDialog<'a>)
Implementations§
Auto Trait Implementations§
impl<'a> Freeze for View<'a>
impl<'a> RefUnwindSafe for View<'a>
impl<'a> !Send for View<'a>
impl<'a> !Sync for View<'a>
impl<'a> Unpin for View<'a>
impl<'a> UnwindSafe for View<'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