Enum mac_address::MacAddressError [] [src]

pub enum MacAddressError {
    InternalError,
}

Possible errors when attempting to retrieve a MAC address.

Eventually will expose more detailed error information.

Variants

Signifies an internal API error has occurred.

Trait Implementations

impl Debug for MacAddressError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Error> for MacAddressError
[src]

[src]

Performs the conversion.

impl Display for MacAddressError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for MacAddressError
[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