pub struct RequestData<U> {
pub app_id: Option<String>,
pub seat_and_serial: Option<(WlSeat, u32)>,
pub surface: Option<WlSurface>,
pub udata: U,
}Expand description
Minimal implementation of [RequestDataExt].
Use a custom type implementing [RequestDataExt] to store more data with a token request
e.g. to identify which request produced which token.
Fields§
§app_id: Option<String>App_id of the application requesting the token, if applicable
seat_and_serial: Option<(WlSeat, u32)>Seat and serial of the window requesting the token, if applicable.
Warning: Many compositors will issue invalid tokens for requests without recent serials. There is no way to detect this from the client-side.
surface: Option<WlSurface>Surface of the window requesting the token, if applicable.
Warning: Many compositors will issue invalid tokens for requests from unfocused surfaces. There is no way to detect this from the client-side.
udata: UTrait Implementations§
Source§impl<U: Clone> Clone for RequestData<U>
impl<U: Clone> Clone for RequestData<U>
Source§fn clone(&self) -> RequestData<U>
fn clone(&self) -> RequestData<U>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<U: Debug> Debug for RequestData<U>
impl<U: Debug> Debug for RequestData<U>
Source§impl<D, U> Dispatch2<XdgActivationTokenV1, D> for RequestData<U>where
D: ActivationHandler<RequestUdata = U>,
impl<D, U> Dispatch2<XdgActivationTokenV1, D> for RequestData<U>where
D: ActivationHandler<RequestUdata = U>,
Auto Trait Implementations§
impl<U> Freeze for RequestData<U>where
U: Freeze,
impl<U> !RefUnwindSafe for RequestData<U>
impl<U> Send for RequestData<U>where
U: Send,
impl<U> Sync for RequestData<U>where
U: Sync,
impl<U> Unpin for RequestData<U>where
U: Unpin,
impl<U> UnsafeUnpin for RequestData<U>where
U: UnsafeUnpin,
impl<U> !UnwindSafe for RequestData<U>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.