pub enum ResumedPick {
File(PickedEntryRef),
Folder(FolderStreamRef),
}Expand description
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(PickedEntryRef)
A single picked file.
Folder(FolderStreamRef)
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