[][src]Struct wayland_client::DispatchData

pub struct DispatchData<'a> { /* fields omitted */ }

Holder of global dispatch-related data

This struct serves as a dynamic container for the dispatch-time global data that you gave to the dispatch method, and is given as input to all your callbacks. It allows you to share global state between your filters.

The main method of interest is the get method, which allows you to access a &mut _ reference to the global data itself. The other methods are mostly used internally by the crate.

Implementations

impl<'a> DispatchData<'a>[src]

pub fn get<T>(&mut self) -> Option<&mut T> where
    T: Any
[src]

Access the dispatch data knowing its type

Will return None if the provided type is not the correct inner type.

pub fn wrap<T>(data: &'a mut T) -> DispatchData<'a> where
    T: Any
[src]

Wrap a mutable reference

This creates a new DispatchData from a mutable reference

pub fn reborrow(&mut self) -> DispatchData<'_>[src]

Reborrows this DispatchData to create a new one with the same content

This is a quick and cheap way to propagate the DispatchData down a callback stack by value. It is basically a noop only there to ease work with the borrow checker.

Auto Trait Implementations

impl<'a> !RefUnwindSafe for DispatchData<'a>[src]

impl<'a> !Send for DispatchData<'a>[src]

impl<'a> !Sync for DispatchData<'a>[src]

impl<'a> Unpin for DispatchData<'a>[src]

impl<'a> !UnwindSafe for DispatchData<'a>[src]

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.