Trait smithay_client_toolkit::environment::MultiGlobalHandler[][src]

pub trait MultiGlobalHandler<I: Interface> {
    fn created(
        &mut self,
        registry: Attached<WlRegistry>,
        id: u32,
        version: u32,
        ddata: DispatchData<'_>
    );
fn removed(&mut self, id: u32, ddata: DispatchData<'_>);
fn get_all(&self) -> Vec<Attached<I>>; }
Expand description

Required trait for implementing a handler for “multi” globals

Required methods

A new instance of this global was created with given id and version

The instance with given id was removed

Access all the currently existing instances

Implementors