Enum objectid::Error []

pub enum Error {
    Argument,
    Io,
    Hex,
    Hostname,
}

Errors that can occur during OID construction and generation.

Variants

Provided string must be a 12-byte hexadecimal string.

Io error.

Hex encode or decode error.

Can't get hostname.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Clone for Error
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for Error

Formats the value using the given formatter.

impl Error for Error

A short description of the error. Read more

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

impl From<Error> for Error

Performs the conversion.

impl From<FromHexError> for Error

Performs the conversion.