Struct wayland_protocols::unstable::tablet::v2::server::zwp_tablet_tool_v2::ZwpTabletToolV2
source · [−]pub struct ZwpTabletToolV2 { /* private fields */ }
Implementations
pub fn hardware_serial(
&self,
conn: &mut DisplayHandle<'_>,
hardware_serial_hi: u32,
hardware_serial_lo: u32
)
pub fn hardware_id_wacom(
&self,
conn: &mut DisplayHandle<'_>,
hardware_id_hi: u32,
hardware_id_lo: u32
)
pub fn proximity_in(
&self,
conn: &mut DisplayHandle<'_>,
serial: u32,
tablet: &ZwpTabletV2,
surface: &WlSurface
)
Trait Implementations
fn parse_request(
conn: &mut DisplayHandle<'_>,
msg: Message<ObjectId>
) -> Result<(Self, Self::Request), DispatchError>
fn write_event(
&self,
conn: &mut DisplayHandle<'_>,
msg: Self::Event
) -> Result<Message<ObjectId>, InvalidId>
fn post_error(
&self,
dh: &mut DisplayHandle<'_>,
code: impl Into<u32>,
error: impl Into<String>
)
Auto Trait Implementations
impl !RefUnwindSafe for ZwpTabletToolV2
impl Send for ZwpTabletToolV2
impl Sync for ZwpTabletToolV2
impl Unpin for ZwpTabletToolV2
impl !UnwindSafe for ZwpTabletToolV2
Blanket Implementations
Mutably borrows from an owned value. Read more
impl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: 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
. Read more
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
Convert &Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
pub 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. Read more