pub enum FileChooserResponse {
Cancel,
Error(String),
Files(Vec<FileChooserFile>),
}Variants§
Trait Implementations§
Source§impl Clone for FileChooserResponse
impl Clone for FileChooserResponse
Source§impl Debug for FileChooserResponse
impl Debug for FileChooserResponse
impl Eq for FileChooserResponse
Source§impl PartialEq for FileChooserResponse
impl PartialEq for FileChooserResponse
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