pub struct ReadDirErrMsg {
pub id: u64,
pub error: String,
}Expand description
Message sent when directory reading fails.
Fields§
§id: u64The file picker ID this message is for.
error: StringError message.
Trait Implementations§
Source§impl Clone for ReadDirErrMsg
impl Clone for ReadDirErrMsg
Source§fn clone(&self) -> ReadDirErrMsg
fn clone(&self) -> ReadDirErrMsg
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 ReadDirErrMsg
impl RefUnwindSafe for ReadDirErrMsg
impl Send for ReadDirErrMsg
impl Sync for ReadDirErrMsg
impl Unpin for ReadDirErrMsg
impl UnwindSafe for ReadDirErrMsg
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