pub trait RequestsTrait {
    fn get_tablet_seat<F>(
        &self,
        seat: &Proxy<WlSeat>,
        implementor: F
    ) -> Result<Proxy<ZwpTabletSeatV1>, ()>
    where
        F: FnOnce(NewProxy<ZwpTabletSeatV1>) -> Proxy<ZwpTabletSeatV1>
; fn destroy(&self); }

Required Methods§

get the tablet seat

Get the wp_tablet_seat object for the given seat. This object provides access to all graphics tablets in this seat.

release the memory for the tablet manager object

Destroy the wp_tablet_manager object. Objects created from this object are unaffected and should be destroyed separately.

This is a destructor, you cannot send requests to this object any longer once this method is called.

Implementations on Foreign Types§

Implementors§