Enum HitTestBehavior
#[repr(u32)]pub enum HitTestBehavior {
KDefault = 0,
KSuppress = 1,
}
Expand description
Describes how nodes interact with hit testings.
Variants§
KDefault = 0
Apply hit testing to the node’s content, its parts, and its children.
KSuppress = 1
Suppress hit testing of the node and everything it contains.
Implementations§
§impl HitTestBehavior
impl HitTestBehavior
pub fn from_primitive(prim: u32) -> Option<HitTestBehavior>
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 HitTestBehavior
impl Clone for HitTestBehavior
§fn clone(&self) -> HitTestBehavior
fn clone(&self) -> HitTestBehavior
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 HitTestBehavior
impl Debug for HitTestBehavior
§impl<D> Decode<HitTestBehavior, D> for HitTestBehaviorwhere
D: ResourceDialect,
impl<D> Decode<HitTestBehavior, D> for HitTestBehaviorwhere
D: ResourceDialect,
§fn new_empty() -> HitTestBehavior
fn new_empty() -> HitTestBehavior
Creates a valid instance of
Self
. The specific value does not matter,
since it will be overwritten by decode
.§impl<D> Encode<HitTestBehavior, D> for HitTestBehaviorwhere
D: ResourceDialect,
impl<D> Encode<HitTestBehavior, D> for HitTestBehaviorwhere
D: ResourceDialect,
§impl Hash for HitTestBehavior
impl Hash for HitTestBehavior
§impl Ord for HitTestBehavior
impl Ord for HitTestBehavior
§impl PartialEq for HitTestBehavior
impl PartialEq for HitTestBehavior
§impl PartialOrd for HitTestBehavior
impl PartialOrd for HitTestBehavior
§impl TypeMarker for HitTestBehavior
impl TypeMarker for HitTestBehavior
§type Owned = HitTestBehavior
type Owned = HitTestBehavior
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 HitTestBehavior
impl ValueTypeMarker for HitTestBehavior
§type Borrowed<'a> = HitTestBehavior
type Borrowed<'a> = HitTestBehavior
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: &<HitTestBehavior as TypeMarker>::Owned,
) -> <HitTestBehavior as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<HitTestBehavior as TypeMarker>::Owned, ) -> <HitTestBehavior as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned
to Self::Borrowed
.impl Copy for HitTestBehavior
impl Eq for HitTestBehavior
impl StructuralPartialEq for HitTestBehavior
Auto Trait Implementations§
impl Freeze for HitTestBehavior
impl RefUnwindSafe for HitTestBehavior
impl Send for HitTestBehavior
impl Sync for HitTestBehavior
impl Unpin for HitTestBehavior
impl UnwindSafe for HitTestBehavior
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