pub enum PointerEvents {
Auto,
None,
}Expand description
The pointer-events keyword.
Variants§
Auto
auto — element receives pointer events.
None
none — element is invisible to pointer events; events pass
through.
Trait Implementations§
Source§impl Clone for PointerEvents
impl Clone for PointerEvents
Source§fn clone(&self) -> PointerEvents
fn clone(&self) -> PointerEvents
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PointerEvents
Source§impl Debug for PointerEvents
impl Debug for PointerEvents
impl Eq for PointerEvents
Source§impl Hash for PointerEvents
impl Hash for PointerEvents
Source§impl PartialEq for PointerEvents
impl PartialEq for PointerEvents
Source§fn eq(&self, other: &PointerEvents) -> bool
fn eq(&self, other: &PointerEvents) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PointerEvents
Auto Trait Implementations§
impl Freeze for PointerEvents
impl RefUnwindSafe for PointerEvents
impl Send for PointerEvents
impl Sync for PointerEvents
impl Unpin for PointerEvents
impl UnsafeUnpin for PointerEvents
impl UnwindSafe for PointerEvents
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