Type Definition nix::Error
pub type Error = Errno;Documentation
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:
CloneCopyEq- Small size
- Represents all of the system’s errnos, instead of just the most common ones.