Enum wayland_client::protocol::wl_registry::Event[][src]

pub enum Event {
    Global {
        name: u32,
        interface: String,
        version: u32,
    },
    GlobalRemove {
        name: u32,
    },
}

Variants

announce global object

Notify the client of global objects.

The event notifies the client that a global object with the given name is now available, and it implements the given version of the given interface.

Fields of Global

announce removal of global object

Notify the client of removed global objects.

This event notifies the client that the global identified by name is no longer available. If the client bound to the global using the bind request, the client should now destroy that object.

The object remains valid and requests to the object will be ignored until the client destroys it, to avoid races between the global going away and a client sending a request to it.

Fields of GlobalRemove

Trait Implementations

impl MessageGroup for Event
[src]

Whether this message is a destructor Read more

Construct a message of this group from its C representation

Build a C representation of this message Read more

Auto Trait Implementations

impl Send for Event

impl Sync for Event