Enum PointerEventType
#[repr(u32)]pub enum PointerEventType {
Touch = 0,
Stylus = 1,
InvertedStylus = 2,
Mouse = 3,
}
Variants§
Touch = 0
A touch-based pointer device.
Stylus = 1
A pointer device with a stylus.
InvertedStylus = 2
A pointer device with a stylus that has been inverted.
Mouse = 3
A pointer device without a stylus.
Implementations§
§impl PointerEventType
impl PointerEventType
pub fn from_primitive(prim: u32) -> Option<PointerEventType>
pub const fn into_primitive(self) -> u32
pub fn is_unknown(&self) -> bool
👎Deprecated: Strict enums should not use
is_unknown
Trait Implementations§
§impl Clone for PointerEventType
impl Clone for PointerEventType
§fn clone(&self) -> PointerEventType
fn clone(&self) -> PointerEventType
Returns a copy 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 more§impl Debug for PointerEventType
impl Debug for PointerEventType
§impl<D> Decode<PointerEventType, D> for PointerEventTypewhere
D: ResourceDialect,
impl<D> Decode<PointerEventType, D> for PointerEventTypewhere
D: ResourceDialect,
§fn new_empty() -> PointerEventType
fn new_empty() -> PointerEventType
Creates a valid instance of
Self
. The specific value does not matter,
since it will be overwritten by decode
.§impl<D> Encode<PointerEventType, D> for PointerEventTypewhere
D: ResourceDialect,
impl<D> Encode<PointerEventType, D> for PointerEventTypewhere
D: ResourceDialect,
§impl Hash for PointerEventType
impl Hash for PointerEventType
§impl Ord for PointerEventType
impl Ord for PointerEventType
§fn cmp(&self, other: &PointerEventType) -> Ordering
fn cmp(&self, other: &PointerEventType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
§impl PartialEq for PointerEventType
impl PartialEq for PointerEventType
§impl PartialOrd for PointerEventType
impl PartialOrd for PointerEventType
§impl TypeMarker for PointerEventType
impl TypeMarker for PointerEventType
§type Owned = PointerEventType
type Owned = PointerEventType
The owned Rust type which this FIDL type decodes into.
§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.§impl ValueTypeMarker for PointerEventType
impl ValueTypeMarker for PointerEventType
§type Borrowed<'a> = PointerEventType
type Borrowed<'a> = PointerEventType
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read more§fn borrow(
value: &<PointerEventType as TypeMarker>::Owned,
) -> <PointerEventType as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<PointerEventType as TypeMarker>::Owned, ) -> <PointerEventType as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned
to Self::Borrowed
.impl Copy for PointerEventType
impl Eq for PointerEventType
impl StructuralPartialEq for PointerEventType
Auto Trait Implementations§
impl Freeze for PointerEventType
impl RefUnwindSafe for PointerEventType
impl Send for PointerEventType
impl Sync for PointerEventType
impl Unpin for PointerEventType
impl UnwindSafe for PointerEventType
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