#[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§
Source§impl PointerEventType
impl PointerEventType
pub fn from_primitive(prim: u32) -> Option<Self>
pub const fn into_primitive(self) -> u32
pub fn is_unknown(&self) -> bool
👎Deprecated: Strict enums should not use
is_unknown
Trait Implementations§
Source§impl Clone for PointerEventType
impl Clone for PointerEventType
Source§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 moreSource§impl Debug for PointerEventType
impl Debug for PointerEventType
Source§impl<D: ResourceDialect> Decode<PointerEventType, D> for PointerEventType
impl<D: ResourceDialect> Decode<PointerEventType, D> for PointerEventType
Source§impl<D: ResourceDialect> Encode<PointerEventType, D> for PointerEventType
impl<D: ResourceDialect> Encode<PointerEventType, D> for PointerEventType
Source§impl Hash for PointerEventType
impl Hash for PointerEventType
Source§impl Ord for PointerEventType
impl Ord for PointerEventType
Source§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
Source§impl PartialEq for PointerEventType
impl PartialEq for PointerEventType
Source§impl PartialOrd for PointerEventType
impl PartialOrd for PointerEventType
Source§impl TypeMarker for PointerEventType
impl TypeMarker for PointerEventType
Source§type Owned = PointerEventType
type Owned = PointerEventType
The owned Rust type which this FIDL type decodes into.
Source§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.
Source§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
.Source§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 moreSource§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.Source§impl ValueTypeMarker for PointerEventType
impl ValueTypeMarker for PointerEventType
Source§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 moreimpl 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)