Lines Matching defs:ErrorKind
10 kind: ErrorKind,
20 ErrorKind::Io(ref e) => Some(e),
21 ErrorKind::Num(ref e) => Some(e),
22 ErrorKind::Utf8(ref e) => Some(e),
23 ErrorKind::Other(_) => None,
31 ErrorKind::Io(ref e) => e.fmt(f),
32 ErrorKind::Num(ref e) => e.fmt(f),
33 ErrorKind::Utf8(ref e) => e.fmt(f),
34 ErrorKind::Other(s) => s.fmt(f),
40 enum ErrorKind {
49 kind: ErrorKind::Io(e),
55 kind: ErrorKind::Num(e),
61 kind: ErrorKind::Utf8(e),
67 kind: ErrorKind::Other(s),