Struct bui_backend_types::CallbackDataAndSession[][src]

pub struct CallbackDataAndSession<T> {
    pub payload: T,
    pub session_key: SessionKey,
}

Callback data from a connected client.

Fields

The callback data sent from the client.

The session key associated with the client.

Trait Implementations

impl<T: Clone> Clone for CallbackDataAndSession<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Debug> Debug for CallbackDataAndSession<T>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T> Send for CallbackDataAndSession<T> where
    T: Send

impl<T> Sync for CallbackDataAndSession<T> where
    T: Sync