Trait wayland_client::Proxy [] [src]

pub trait Proxy: ProxyInternal {
    fn ptr(&self) -> *mut wl_proxy;
    fn interface() -> *mut wl_interface;
    fn interface_name() -> &'static str;
    fn version() -> u32;
    fn id(&self) -> ProxyId;
    fn set_event_iterator(&mut self, iter: &EventIterator);
}

Required Methods

fn ptr(&self) -> *mut wl_proxy

fn interface() -> *mut wl_interface

fn interface_name() -> &'static str

The internal name of this interface, as advertized by the registry if it is a global.

fn version() -> u32

The maximum version of this interface handled by the library.

fn id(&self) -> ProxyId

Get the id of this proxy

fn set_event_iterator(&mut self, iter: &EventIterator)

Set the event iterator associated to this proxy

Implementors