pub enum EnumerateError {
DecodeDirent(DecodeDirentError),
Fidl(&'static str, Error),
ReadDirents(Status),
Timeout,
Rewind(Status),
Unlink(Status),
}Expand description
Error returned by readdir.
Variants§
DecodeDirent(DecodeDirentError)
Fidl(&'static str, Error)
ReadDirents(Status)
Timeout
Rewind(Status)
Unlink(Status)
Trait Implementations§
Source§impl Clone for EnumerateError
impl Clone for EnumerateError
Source§fn clone(&self) -> EnumerateError
fn clone(&self) -> EnumerateError
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 moreSource§impl Debug for EnumerateError
impl Debug for EnumerateError
Source§impl Display for EnumerateError
impl Display for EnumerateError
Source§impl Error for EnumerateError
impl Error for EnumerateError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for EnumerateError
impl !RefUnwindSafe for EnumerateError
impl Send for EnumerateError
impl Sync for EnumerateError
impl Unpin for EnumerateError
impl UnsafeUnpin for EnumerateError
impl !UnwindSafe for EnumerateError
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