Enum wayland_client::protocol::wl_display::Event [−][src]
pub enum Event { Error { object_id: Proxy<AnonymousObject>, code: u32, message: String, }, DeleteId { id: u32, }, }
Variants
Error
fatal error event
The error event is sent out when a fatal (non-recoverable) error has occurred. The object_id argument is the object where the error occurred, most often in response to a request to that object. The code identifies the error and is defined by the object interface. As such, each interface defines its own set of error codes. The message is a brief description of the error, for (debugging) convenience.
Fields of Error
object_id: Proxy<AnonymousObject> | |
code: u32 | |
message: String |
DeleteId
acknowledge object ID deletion
This event is used internally by the object ID management logic. When a client deletes an object, the server will send this event to acknowledge that it has seen the delete request. When the client receives this event, it will know that it can safely reuse the object ID.
Fields of DeleteId
id: u32 |
Trait Implementations
impl MessageGroup for Event
[src]
impl MessageGroup for Event
const MESSAGES: &'static [MessageDesc]
MESSAGES: &'static [MessageDesc] = &[super::MessageDesc{name: "error", since: 1, signature: &[super::ArgumentType::Object, super::ArgumentType::Uint, super::ArgumentType::Str],}, super::MessageDesc{name: "delete_id", since: 1, signature: &[super::ArgumentType::Uint],}]
Wire representation of this MessageGroup
type Map = ProxyMap
fn is_destructor(&self) -> bool
[src]
fn is_destructor(&self) -> bool
Whether this message is a destructor Read more
fn child<Meta: ObjectMetadata>(
opcode: u16,
version: u32,
meta: &Meta
) -> Option<Object<Meta>>
[src]
fn child<Meta: ObjectMetadata>(
opcode: u16,
version: u32,
meta: &Meta
) -> Option<Object<Meta>>
Retrieve the child Object
associated with this message if any
fn from_raw(msg: Message, map: &mut Self::Map) -> Result<Self, ()>
[src]
fn from_raw(msg: Message, map: &mut Self::Map) -> Result<Self, ()>
Construct a message from its raw representation
fn into_raw(self, sender_id: u32) -> Message
[src]
fn into_raw(self, sender_id: u32) -> Message
Turn this message into its raw representation