Home
last modified time | relevance | path

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

/external/rust/crates/nix/src/
Dlib.rs129 pub fn from_errno(errno: Errno) -> Error { in from_errno() method
146 fn from(errno: Errno) -> Error { Error::from_errno(errno) } in from()
/external/rust/crates/nix/src/sys/
Daio.rs795 num if num > 0 => Err(Error::from_errno(Errno::from_i32(num))), in error()