pub enum FileChooserResponse {
Cancel,
Error(String),
Files(Vec<FileChooserFile>),
}Variants§
Trait Implementations§
Source§impl Clone for FileChooserResponse
impl Clone for FileChooserResponse
Source§fn clone(&self) -> FileChooserResponse
fn clone(&self) -> FileChooserResponse
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 FileChooserResponse
impl Debug for FileChooserResponse
impl Eq for FileChooserResponse
Source§impl PartialEq for FileChooserResponse
impl PartialEq for FileChooserResponse
Source§fn eq(&self, other: &FileChooserResponse) -> bool
fn eq(&self, other: &FileChooserResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FileChooserResponse
Auto Trait Implementations§
impl Freeze for FileChooserResponse
impl RefUnwindSafe for FileChooserResponse
impl Send for FileChooserResponse
impl Sync for FileChooserResponse
impl Unpin for FileChooserResponse
impl UnsafeUnpin for FileChooserResponse
impl UnwindSafe for FileChooserResponse
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