Lines Matching defs:Error
28 pub struct Error { struct
30 inner: ErrorInner, argument
35 Io { path: Option<PathBuf>, err: io::Error }, argument
39 impl Error { impl
143 pub fn io_error(&self) -> Option<&io::Error> { in io_error()
155 pub fn into_io_error(self) -> Option<io::Error> { in into_io_error()
165 err: io::Error, in from_path()
202 impl error::Error for Error { implementation
211 fn cause(&self) -> Option<&dyn error::Error> { in cause()
223 impl fmt::Display for Error { implementation
244 impl From<Error> for io::Error { implementation
256 fn from(walk_err: Error) -> io::Error { in from()