Enum wayland_client::wayland::WlDisplayEvent
[−]
[src]
pub enum WlDisplayEvent { Error(ProxyId, u32, String), DeleteId(u32), }
Variants
Error(ProxyId, u32, String)
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 an brief description of the error, for (debugging) convenience.
Values: object_id, code, message,
DeleteId(u32)
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 receive this event, it will know that it can safely reuse the object ID.
Values: id,