Struct smithay_client_toolkit::activation::RequestData
source · pub struct RequestData {
pub app_id: Option<String>,
pub seat_and_serial: Option<(WlSeat, u32)>,
pub surface: Option<WlSurface>,
}
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.
Trait Implementations§
source§impl Clone for RequestData
impl Clone for RequestData
source§fn clone(&self) -> RequestData
fn clone(&self) -> RequestData
Returns a copy 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 Debug for RequestData
impl Debug for RequestData
Auto Trait Implementations§
impl Freeze for RequestData
impl !RefUnwindSafe for RequestData
impl Send for RequestData
impl Sync for RequestData
impl Unpin for RequestData
impl !UnwindSafe for RequestData
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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§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
.source§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
.source§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.source§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.