pub enum ResumedPick {
File(Rc<dyn PickedEntry>),
Folder(Rc<dyn FolderStream>),
}Expand description
Re-export framework services (HTTP, URI, etc.) from the dedicated services crate.
A selection recovered by FilePicker::take_resumed_picks after the
composition that requested it was destroyed mid-pick (Android recreates the
activity when the SAF picker covers it on some devices). It is consumed
exactly like a freshly-returned pick.
Variants§
File(Rc<dyn PickedEntry>)
A single picked file.
Folder(Rc<dyn FolderStream>)
A picked folder, streamed like FilePicker::pick_folder_streaming.
Auto Trait Implementations§
impl !RefUnwindSafe for ResumedPick
impl !Send for ResumedPick
impl !Sync for ResumedPick
impl !UnwindSafe for ResumedPick
impl Freeze for ResumedPick
impl Unpin for ResumedPick
impl UnsafeUnpin for ResumedPick
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