Enum ipnetwork::IpNetworkError [] [src]

pub enum IpNetworkError {
    InvalidAddr(String),
    InvalidPrefix,
    InvalidCidrFormat(String),
}

Represents a bunch of errors that can occur while working with a IpNetwork

Variants

Trait Implementations

impl Debug for IpNetworkError
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for IpNetworkError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for IpNetworkError
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for IpNetworkError
[src]

impl Display for IpNetworkError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for IpNetworkError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

Auto Trait Implementations