[][src]Struct wayland_server::Client

pub struct Client { /* fields omitted */ }

A handle to a client connected to your server

There can be several handles referring to the same client

Methods

impl Client[src]

pub fn alive(&self) -> bool[src]

Check whether this client is still connected to the server

pub fn equals(&self, other: &Client) -> bool[src]

Check whether this client handle refers to the same client as an other

pub fn flush(&self)[src]

Flush the pending events to this client

pub fn kill(&self)[src]

Kills this client

Does nothing if the client is already dead

pub fn data_map(&self) -> &UserDataMap[src]

Access the map handling user data associated to this client

See UserDataMap documentation for details about its use.

pub fn add_destructor<F: FnOnce(&UserDataMap) + Send + 'static>(
    &self,
    destructor: F
)
[src]

Add a destructor for this client

This closure will be called when the client disconnects or is killed, It has access to the user data map associated to this client.

You can add several destructors which will all be called sequentially. Note that if you accidentally add two copies of the same closure, it'll be called twice.

The destructors will be executed on the thread containing the wayland event loop.

pub fn create_resource<I: Interface>(
    &self,
    version: u32
) -> Option<NewResource<I>>
[src]

Create a new resource for this client

To ensure the state coherence between client and server, this resource should immediately be implemented and sent to the client through and appropriate event. Failure to do so will likely cause protocol errors.

Trait Implementations

impl Clone for Client[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Client

impl Sync for Client

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Downcast for T where
    T: Any
[src]