Enum lightning::ln::msgs::DecodeError[][src]

pub enum DecodeError {
    UnknownVersion,
    UnknownRequiredFeature,
    InvalidValue,
    ShortRead,
    BadLengthDescriptor,
    Io(ErrorKind),
    UnsupportedCompression,
}
Expand description

An error in decoding a message or struct.

Variants

UnknownVersion

A version byte specified something we don’t know how to handle. Includes unknown realm byte in an OnionHopData packet

UnknownRequiredFeature

Unknown feature mandating we fail to parse message (eg TLV with an even, unknown type)

InvalidValue

Value was invalid, eg a byte which was supposed to be a bool was something other than a 0 or 1, a public key/private key/signature was invalid, text wasn’t UTF-8, TLV was syntactically incorrect, etc

ShortRead

Buffer too short

BadLengthDescriptor

A length descriptor in the packet didn’t describe the later data correctly

Error from std::io

UnsupportedCompression

The message included zlib-compressed values, which we don’t support.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Performs the conversion.

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.