[−][src]Struct wayland_server::Client
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]
&self,
destructor: F
)
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]
&self,
version: u32
) -> Option<NewResource<I>>
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
Auto Trait Implementations
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Downcast for T where
T: Any,
[src]
T: Any,