Struct re_renderer::PickingLayerObjectId
source · #[repr(C)]pub struct PickingLayerObjectId(pub u64);Expand description
The first 64bit of the picking layer.
Typically used to identify higher level objects Some renderers might allow to change this part of the picking identifier only at a coarse grained level.
Tuple Fields§
§0: u64Trait Implementations§
source§impl Clone for PickingLayerObjectId
impl Clone for PickingLayerObjectId
source§fn clone(&self) -> PickingLayerObjectId
fn clone(&self) -> PickingLayerObjectId
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 PickingLayerObjectId
impl Debug for PickingLayerObjectId
source§impl Default for PickingLayerObjectId
impl Default for PickingLayerObjectId
source§fn default() -> PickingLayerObjectId
fn default() -> PickingLayerObjectId
Returns the “default value” for a type. Read more
source§impl PartialEq<PickingLayerObjectId> for PickingLayerObjectId
impl PartialEq<PickingLayerObjectId> for PickingLayerObjectId
source§fn eq(&self, other: &PickingLayerObjectId) -> bool
fn eq(&self, other: &PickingLayerObjectId) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for PickingLayerObjectId
impl Eq for PickingLayerObjectId
impl Pod for PickingLayerObjectId
impl StructuralEq for PickingLayerObjectId
impl StructuralPartialEq for PickingLayerObjectId
Auto Trait Implementations§
impl RefUnwindSafe for PickingLayerObjectId
impl Send for PickingLayerObjectId
impl Sync for PickingLayerObjectId
impl Unpin for PickingLayerObjectId
impl UnwindSafe for PickingLayerObjectId
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> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere T: AnyBitPattern,
§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.