Enum iptables::error::IPTError [] [src]

pub enum IPTError {
    Io(Error),
    Regex(Error),
    Nix(Error),
    Parse(ParseIntError),
    Other(&'static str),
}

Defines the general error type of iptables crate

Variants

Trait Implementations

impl Debug for IPTError
[src]

Formats the value using the given formatter.

impl Display for IPTError
[src]

Formats the value using the given formatter. Read more

impl Error for IPTError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<Error> for IPTError
[src]

Performs the conversion.

impl From<Error> for IPTError
[src]

Performs the conversion.

impl From<Error> for IPTError
[src]

Performs the conversion.

impl From<ParseIntError> for IPTError
[src]

Performs the conversion.

impl From<&'static str> for IPTError
[src]

Performs the conversion.