Struct StylusDescriptor
pub struct StylusDescriptor {
pub x: Axis,
pub y: Axis,
pub pressure: Option<Box<Axis>>,
pub is_invertible: bool,
pub buttons: u32,
}
Fields§
§x: Axis
§y: Axis
§pressure: Option<Box<Axis>>
§is_invertible: bool
Trait Implementations§
§impl Clone for StylusDescriptor
impl Clone for StylusDescriptor
§fn clone(&self) -> StylusDescriptor
fn clone(&self) -> StylusDescriptor
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 StylusDescriptor
impl Debug for StylusDescriptor
§impl<D> Decode<StylusDescriptor, D> for StylusDescriptorwhere
D: ResourceDialect,
impl<D> Decode<StylusDescriptor, D> for StylusDescriptorwhere
D: ResourceDialect,
§fn new_empty() -> StylusDescriptor
fn new_empty() -> StylusDescriptor
Creates a valid instance of
Self
. The specific value does not matter,
since it will be overwritten by decode
.§impl<D> Encode<StylusDescriptor, D> for &StylusDescriptorwhere
D: ResourceDialect,
impl<D> Encode<StylusDescriptor, D> for &StylusDescriptorwhere
D: ResourceDialect,
§impl Hash for StylusDescriptor
impl Hash for StylusDescriptor
§impl Ord for StylusDescriptor
impl Ord for StylusDescriptor
§fn cmp(&self, other: &StylusDescriptor) -> Ordering
fn cmp(&self, other: &StylusDescriptor) -> 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 StylusDescriptor
impl PartialEq for StylusDescriptor
§impl PartialOrd for StylusDescriptor
impl PartialOrd for StylusDescriptor
§impl TypeMarker for StylusDescriptor
impl TypeMarker for StylusDescriptor
§type Owned = StylusDescriptor
type Owned = StylusDescriptor
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 StylusDescriptor
impl ValueTypeMarker for StylusDescriptor
§type Borrowed<'a> = &'a StylusDescriptor
type Borrowed<'a> = &'a StylusDescriptor
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: &<StylusDescriptor as TypeMarker>::Owned,
) -> <StylusDescriptor as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<StylusDescriptor as TypeMarker>::Owned, ) -> <StylusDescriptor as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned
to Self::Borrowed
.impl Eq for StylusDescriptor
impl Persistable for StylusDescriptor
impl StructuralPartialEq for StylusDescriptor
Auto Trait Implementations§
impl Freeze for StylusDescriptor
impl RefUnwindSafe for StylusDescriptor
impl Send for StylusDescriptor
impl Sync for StylusDescriptor
impl Unpin for StylusDescriptor
impl UnwindSafe for StylusDescriptor
Blanket Implementations§
§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
The marker type to use when the body is at the top-level.
§type MarkerInResultUnion = T
type MarkerInResultUnion = T
The marker type to use when the body is nested in a result union.
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