pub enum Request {
Destroy,
GetRelativePointer {
id: NewObject<ZwpRelativePointerV1>,
pointer: ObjectId,
},
}
Variants§
Destroy
destroy the relative pointer manager object
Used by the client to notify the server that it will no longer use this relative pointer manager object.
GetRelativePointer
get a relative pointer object
Create a relative pointer interface given a wl_pointer object. See the wp_relative_pointer interface for more details.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Request
impl RefUnwindSafe for Request
impl Send for Request
impl Sync for Request
impl Unpin for Request
impl UnwindSafe for Request
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