Enum engine_io::packet::Error [] [src]

pub enum Error {
    InvalidPacketID(u8),
    InvalidLengthDigit(u32),
    InvalidLengthCharacter(u8),
    IncompletePacket,
    EmptyPacket,
    FromBase64Error(FromBase64Error),
    Utf8Error(Utf8Error),
}

Variants

InvalidPacketID(u8)InvalidLengthDigit(u32)InvalidLengthCharacter(u8)IncompletePacketEmptyPacketFromBase64Error(FromBase64Error)Utf8Error(Utf8Error)

Trait Implementations

impl Debug for Error
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for Error
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.