pub enum PointerEventsValue {
Initial,
Inherit,
Revert,
RevertLayer,
Unset,
Auto,
None,
}Variants§
Implementations§
Source§impl PointerEventsValue
impl PointerEventsValue
Sourcepub const fn is_initial(&self) -> bool
pub const fn is_initial(&self) -> bool
Returns true if the enum is PointerEventsValue::Initial otherwise false
Sourcepub const fn is_inherit(&self) -> bool
pub const fn is_inherit(&self) -> bool
Returns true if the enum is PointerEventsValue::Inherit otherwise false
Sourcepub const fn is_revert(&self) -> bool
pub const fn is_revert(&self) -> bool
Returns true if the enum is PointerEventsValue::Revert otherwise false
Sourcepub const fn is_revert_layer(&self) -> bool
pub const fn is_revert_layer(&self) -> bool
Returns true if the enum is PointerEventsValue::RevertLayer otherwise false
Sourcepub const fn is_unset(&self) -> bool
pub const fn is_unset(&self) -> bool
Returns true if the enum is PointerEventsValue::Unset otherwise false
Trait Implementations§
Source§impl Clone for PointerEventsValue
impl Clone for PointerEventsValue
Source§fn clone(&self) -> PointerEventsValue
fn clone(&self) -> PointerEventsValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PointerEventsValue
impl Debug for PointerEventsValue
Source§impl Display for PointerEventsValue
impl Display for PointerEventsValue
Source§impl PartialEq for PointerEventsValue
impl PartialEq for PointerEventsValue
impl StructuralPartialEq for PointerEventsValue
impl UnitDataType<PointerEvents<PointerEventsValue>> for PointerEventsValue
Auto Trait Implementations§
impl Freeze for PointerEventsValue
impl RefUnwindSafe for PointerEventsValue
impl Send for PointerEventsValue
impl Sync for PointerEventsValue
impl Unpin for PointerEventsValue
impl UnwindSafe for PointerEventsValue
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