Enum rustberry::error::ErrorKind[][src]

pub enum ErrorKind {
    Reserved,
    OutOfRange,
    IoError,
    UnsupportedSystem,
}

Types of errors returned by this crate.

Variants

The item requested has already been reserved.

The identifier given is invalid for this item type.

A critical I/O error occurred during this function call.

The detected system is not supported by this crate.

Trait Implementations

impl Debug for ErrorKind
[src]

Formats the value using the given formatter. Read more

impl Clone for ErrorKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ErrorKind
[src]

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

This method tests for !=.

impl Eq for ErrorKind
[src]

impl Display for ErrorKind
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ErrorKind

impl Sync for ErrorKind