Home
last modified time | relevance | path

Searched refs:ErrorKind (Results 1 – 3 of 3) sorted by relevance

/device/google/cuttlefish_vmm/qemu/third_party/rust/crates/autocfg/src/
Derror.rs10 kind: ErrorKind,
20 ErrorKind::Io(ref e) => Some(e), in cause()
21 ErrorKind::Num(ref e) => Some(e), in cause()
22 ErrorKind::Utf8(ref e) => Some(e), in cause()
23 ErrorKind::Other(_) => None, in cause()
31 ErrorKind::Io(ref e) => e.fmt(f), in fmt()
32 ErrorKind::Num(ref e) => e.fmt(f), in fmt()
33 ErrorKind::Utf8(ref e) => e.fmt(f), in fmt()
34 ErrorKind::Other(s) => s.fmt(f), in fmt()
40 enum ErrorKind { enum
[all …]
/device/google/cuttlefish/host/commands/append_squashfs_overlay/src/
Dmain.rs20 use std::io::{copy, Error, ErrorKind, Read, Result, Seek, SeekFrom};
44 ErrorKind::AlreadyExists, in merge_fs()
55 return Err(Error::new(ErrorKind::InvalidData, "The source image isn't a squashfs image.")); in merge_fs()
/device/google/cuttlefish_vmm/qemu/third_party/rust/crates/pkg-config/src/
Dlib.rs177 io::ErrorKind::NotFound => { in fmt()