Enum roughenough::Error [] [src]

pub enum Error {
    TagNotStrictlyIncreasing(Tag),
    InvalidTag(Box<[u8]>),
    EncodingFailure(Error),
    RequestTooShort,
    InvalidRequest,
}

Error types generated by this implementation

Variants

The associated tag was added to an RtMessage in non-increasing order.

Encoding failed. The associated std::io::Error should provide more information.

Request was less than 1024 bytes

Otherwise invalid request

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Error> for Error
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error