Enum wayland_commons::wire::MessageWriteError[][src]

pub enum MessageWriteError {
    BufferTooSmall,
    DupFdFailed(Error),
}

Error generated when trying to serialize a message into buffers

Variants

The buffer is too small to hold the message contents

The message contains a FD that could not be dup-ed

Trait Implementations

impl Debug for MessageWriteError
[src]

Formats the value using the given formatter. Read more

impl Clone for MessageWriteError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations