Enum wayland_client::GlobalEvent
[−]
[src]
pub enum GlobalEvent {
New {
id: u32,
interface: String,
version: u32,
},
Removed {
id: u32,
interface: String,
},
}Event provided to the user callback of GlobalManager
Variants
NewA new global was created
Fields of New
id: u32 | Id of the new global |
interface: String | Interface of the new global |
version: u32 | Maximum supported version of the new global |
RemovedA global was removed
Fields of Removed
id: u32 | Id of the removed global |
interface: String | Interface of the removed global |