Enum nix::Error [−][src]
pub enum Error {
Sys(Errno),
InvalidPath,
InvalidUtf8,
UnsupportedOperation,
}Nix Error Type
The nix error type provides a common way of dealing with various system system/libc calls that might fail. Each error has a corresponding errno (usually the one from the underlying OS) to which it can be mapped in addition to implementing other common traits.
Variants
Sys(Errno)InvalidPathInvalidUtf8The operation involved a conversion to Rust's native String type, which failed because the string did not contain all valid UTF-8.
UnsupportedOperationThe operation is not supported by Nix, in this instance either use the libc bindings or consult the module documentation to see if there is a more appropriate interface available.
Methods
impl Error[src]
impl Errorpub fn from_errno(errno: Errno) -> Error[src]
pub fn from_errno(errno: Errno) -> ErrorCreate a nix Error from a given errno
pub fn last() -> Error[src]
pub fn last() -> ErrorGet the current errno and convert it to a nix Error
pub fn invalid_argument() -> Error[src]
pub fn invalid_argument() -> ErrorCreate a new invalid argument error (EINVAL)
Trait Implementations
impl Clone for Error[src]
impl Clone for Errorfn clone(&self) -> Error[src]
fn clone(&self) -> ErrorReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Copy for Error[src]
impl Copy for Errorimpl Debug for Error[src]
impl Debug for Errorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for Error[src]
impl PartialEq for Errorfn eq(&self, other: &Error) -> bool[src]
fn eq(&self, other: &Error) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Error) -> bool[src]
fn ne(&self, other: &Error) -> boolThis method tests for !=.
impl From<Errno> for Error[src]
impl From<Errno> for Errorimpl From<FromUtf8Error> for Error[src]
impl From<FromUtf8Error> for Errorfn from(_: FromUtf8Error) -> Error[src]
fn from(_: FromUtf8Error) -> ErrorPerforms the conversion.
impl Error for Error[src]
impl Error for Errorfn description(&self) -> &str[src]
fn description(&self) -> &strThis method is soft-deprecated. Read more
fn cause(&self) -> Option<&Error>1.0.0[src]
fn cause(&self) -> Option<&Error>The lower-level cause of this error, if any. Read more
impl Display for Error[src]
impl Display for Error