Home
last modified time | relevance | path

Searched refs:from_io (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/walkdir/src/
Dlib.rs899 .map_err(|err| Error::from_io(self.depth, err))?; in push()
949 .map_err(|err| Error::from_io(self.depth, err))?; in check_loop()
953 .map_err(|err| Error::from_io(self.depth, err))?; in check_loop()
998 Err(err) => Err(Error::from_io(depth + 1, err)), in next()
Derror.rs183 pub(crate) fn from_io(depth: usize, err: io::Error) -> Self { in from_io() method