[][src]Trait wayland_client::protocol::wl_display::EventHandler

pub trait EventHandler {
    fn error(
        &mut self,
        object: WlDisplay,
        object_id: AnonymousObject,
        code: u32,
        message: String
    ) { ... }
fn delete_id(&mut self, object: WlDisplay, id: u32) { ... } }

An interface for handling events.

Provided methods

fn error(
    &mut self,
    object: WlDisplay,
    object_id: AnonymousObject,
    code: u32,
    message: 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 a brief description of the error, for (debugging) convenience.

fn delete_id(&mut self, object: WlDisplay, id: 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 receives this event, it will know that it can safely reuse the object ID.

Loading content...

Implementors

Loading content...