Type Definition nix::Error [−][src]
pub type Error = Errno;
Expand description
Nix’s main error type.
It’s a wrapper around Errno. As such, it’s very interoperable with
std::io::Error
, but it has the advantages of:
Clone
Copy
Eq
- Small size
- Represents all of the system’s errnos, instead of just the most common ones.