pub enum TouchActionValue {
Show 15 variants
Initial,
Inherit,
Revert,
RevertLayer,
Unset,
Auto,
None,
PanX,
PanLeft,
PanRight,
PanY,
PanUp,
PanDown,
PinchZoom,
Manipulation,
}Variants§
Initial
Inherit
Revert
RevertLayer
Unset
Auto
None
PanX
PanLeft
PanRight
PanY
PanUp
PanDown
PinchZoom
Manipulation
Implementations§
Source§impl TouchActionValue
impl TouchActionValue
Sourcepub const fn is_initial(&self) -> bool
pub const fn is_initial(&self) -> bool
Returns true if the enum is TouchActionValue::Initial otherwise false
Sourcepub const fn is_inherit(&self) -> bool
pub const fn is_inherit(&self) -> bool
Returns true if the enum is TouchActionValue::Inherit otherwise false
Sourcepub const fn is_revert(&self) -> bool
pub const fn is_revert(&self) -> bool
Returns true if the enum is TouchActionValue::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 TouchActionValue::RevertLayer otherwise false
Sourcepub const fn is_unset(&self) -> bool
pub const fn is_unset(&self) -> bool
Returns true if the enum is TouchActionValue::Unset otherwise false
Sourcepub const fn is_auto(&self) -> bool
pub const fn is_auto(&self) -> bool
Returns true if the enum is TouchActionValue::Auto otherwise false
Sourcepub const fn is_none(&self) -> bool
pub const fn is_none(&self) -> bool
Returns true if the enum is TouchActionValue::None otherwise false
Sourcepub const fn is_pan_x(&self) -> bool
pub const fn is_pan_x(&self) -> bool
Returns true if the enum is TouchActionValue::PanX otherwise false
Sourcepub const fn is_pan_left(&self) -> bool
pub const fn is_pan_left(&self) -> bool
Returns true if the enum is TouchActionValue::PanLeft otherwise false
Sourcepub const fn is_pan_right(&self) -> bool
pub const fn is_pan_right(&self) -> bool
Returns true if the enum is TouchActionValue::PanRight otherwise false
Sourcepub const fn is_pan_y(&self) -> bool
pub const fn is_pan_y(&self) -> bool
Returns true if the enum is TouchActionValue::PanY otherwise false
Sourcepub const fn is_pan_up(&self) -> bool
pub const fn is_pan_up(&self) -> bool
Returns true if the enum is TouchActionValue::PanUp otherwise false
Sourcepub const fn is_pan_down(&self) -> bool
pub const fn is_pan_down(&self) -> bool
Returns true if the enum is TouchActionValue::PanDown otherwise false
Sourcepub const fn is_pinch_zoom(&self) -> bool
pub const fn is_pinch_zoom(&self) -> bool
Returns true if the enum is TouchActionValue::PinchZoom otherwise false
Sourcepub const fn is_manipulation(&self) -> bool
pub const fn is_manipulation(&self) -> bool
Returns true if the enum is TouchActionValue::Manipulation otherwise false
Trait Implementations§
Source§impl Clone for TouchActionValue
impl Clone for TouchActionValue
Source§fn clone(&self) -> TouchActionValue
fn clone(&self) -> TouchActionValue
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more