Struct wayland_protocols::unstable::pointer_constraints::v1::client::zwp_confined_pointer_v1::ZwpConfinedPointerV1
source · [−]pub struct ZwpConfinedPointerV1(_);
Implementations
sourceimpl ZwpConfinedPointerV1
impl ZwpConfinedPointerV1
sourcepub fn destroy(&self)
pub fn destroy(&self)
destroy the confined pointer object
Destroy the confined pointer object. If applicable, the compositor will unconfine the pointer.
This is a destructor, you cannot send requests to this object any longer once this method is called.
sourcepub fn set_region(&self, region: Option<&WlRegion>)
pub fn set_region(&self, region: Option<&WlRegion>)
set a new confine region
Set a new region used to confine the pointer.
The new confine region is double-buffered. The new confine region will only take effect when the associated surface gets its pending state applied. See wl_surface.commit for details.
If the confinement is active when the new confinement region is applied and the pointer ends up outside of newly applied region, the pointer may warped to a position within the new confinement region. If warped, a wl_pointer.motion event will be emitted, but no wp_relative_pointer.relative_motion event.
The compositor may also, instead of using the new region, unconfine the pointer.
For details about the confine region, see wp_confined_pointer.
Trait Implementations
sourceimpl AsRef<Proxy<ZwpConfinedPointerV1>> for ZwpConfinedPointerV1
impl AsRef<Proxy<ZwpConfinedPointerV1>> for ZwpConfinedPointerV1
sourceimpl Clone for ZwpConfinedPointerV1
impl Clone for ZwpConfinedPointerV1
sourcefn clone(&self) -> ZwpConfinedPointerV1
fn clone(&self) -> ZwpConfinedPointerV1
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ZwpConfinedPointerV1
impl Debug for ZwpConfinedPointerV1
sourceimpl From<Proxy<ZwpConfinedPointerV1>> for ZwpConfinedPointerV1
impl From<Proxy<ZwpConfinedPointerV1>> for ZwpConfinedPointerV1
sourceimpl From<ZwpConfinedPointerV1> for Proxy<ZwpConfinedPointerV1>
impl From<ZwpConfinedPointerV1> for Proxy<ZwpConfinedPointerV1>
sourcefn from(value: ZwpConfinedPointerV1) -> Self
fn from(value: ZwpConfinedPointerV1) -> Self
Converts to this type from the input type.
sourceimpl Interface for ZwpConfinedPointerV1
impl Interface for ZwpConfinedPointerV1
sourcefn c_interface() -> *const wl_interface
fn c_interface() -> *const wl_interface
Pointer to the C representation of this interface
sourceimpl PartialEq<ZwpConfinedPointerV1> for ZwpConfinedPointerV1
impl PartialEq<ZwpConfinedPointerV1> for ZwpConfinedPointerV1
sourcefn eq(&self, other: &ZwpConfinedPointerV1) -> bool
fn eq(&self, other: &ZwpConfinedPointerV1) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Eq for ZwpConfinedPointerV1
impl StructuralEq for ZwpConfinedPointerV1
impl StructuralPartialEq for ZwpConfinedPointerV1
Auto Trait Implementations
impl !RefUnwindSafe for ZwpConfinedPointerV1
impl Send for ZwpConfinedPointerV1
impl Sync for ZwpConfinedPointerV1
impl Unpin for ZwpConfinedPointerV1
impl !UnwindSafe for ZwpConfinedPointerV1
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
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
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
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
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. Read more
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. Read more