Enum wayland_commons::wire::MessageParseError[][src]

pub enum MessageParseError {
    MissingFD,
    MissingData,
    Malformed,
}

Error generated when trying to deserialize a message from buffers

Variants

The message references a FD but the buffer FD is empty

More data is nedded to deserialize the message

The message is malformed and cannot be parsed

Trait Implementations

impl Debug for MessageParseError
[src]

Formats the value using the given formatter. Read more

impl Clone for MessageParseError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations