pub enum OpenDialogResponse<S: Select> {
Accept(S::Selection),
Cancel,
}Expand description
Messages that can be sent from the open dialog component
Variants§
Trait Implementations§
Source§impl<S: Clone + Select> Clone for OpenDialogResponse<S>
impl<S: Clone + Select> Clone for OpenDialogResponse<S>
Source§fn clone(&self) -> OpenDialogResponse<S>
fn clone(&self) -> OpenDialogResponse<S>
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<S> Freeze for OpenDialogResponse<S>
impl<S> RefUnwindSafe for OpenDialogResponse<S>
impl<S> Send for OpenDialogResponse<S>
impl<S> Sync for OpenDialogResponse<S>
impl<S> Unpin for OpenDialogResponse<S>
impl<S> UnwindSafe for OpenDialogResponse<S>
Blanket Implementations§
Source§impl<C> AsyncPosition<()> for C
impl<C> AsyncPosition<()> for C
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