pub struct ReadDirMsg {
pub id: u64,
pub entries: Vec<DirEntry>,
}Expand description
Message sent when directory reading completes.
Fields§
§id: u64The file picker ID this message is for.
entries: Vec<DirEntry>The directory entries read.
Trait Implementations§
Source§impl Clone for ReadDirMsg
impl Clone for ReadDirMsg
Source§fn clone(&self) -> ReadDirMsg
fn clone(&self) -> ReadDirMsg
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 Freeze for ReadDirMsg
impl RefUnwindSafe for ReadDirMsg
impl Send for ReadDirMsg
impl Sync for ReadDirMsg
impl Unpin for ReadDirMsg
impl UnwindSafe for ReadDirMsg
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