pub struct PointIndex(pub u32);Expand description
Index of a point in point-cloud or mesh geometry.
Tuple Fields§
§0: u32Trait Implementations§
Source§impl Clone for PointIndex
impl Clone for PointIndex
Source§fn clone(&self) -> PointIndex
fn clone(&self) -> PointIndex
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PointIndex
Source§impl Debug for PointIndex
impl Debug for PointIndex
impl Eq for PointIndex
Source§impl From<PointIndex> for u32
impl From<PointIndex> for u32
Source§fn from(v: PointIndex) -> Self
fn from(v: PointIndex) -> Self
Converts to this type from the input type.
Source§impl From<PointIndex> for usize
impl From<PointIndex> for usize
Source§fn from(v: PointIndex) -> Self
fn from(v: PointIndex) -> Self
Converts to this type from the input type.
Source§impl From<u32> for PointIndex
impl From<u32> for PointIndex
Source§impl From<usize> for PointIndex
impl From<usize> for PointIndex
Source§impl Hash for PointIndex
impl Hash for PointIndex
Source§impl Ord for PointIndex
impl Ord for PointIndex
Source§fn cmp(&self, other: &PointIndex) -> Ordering
fn cmp(&self, other: &PointIndex) -> Ordering
1.21.0 (const: unstable) · 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 PointIndex
impl PartialEq for PointIndex
Source§fn eq(&self, other: &PointIndex) -> bool
fn eq(&self, other: &PointIndex) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PointIndex
impl PartialOrd for PointIndex
impl StructuralPartialEq for PointIndex
Auto Trait Implementations§
impl Freeze for PointIndex
impl RefUnwindSafe for PointIndex
impl Send for PointIndex
impl Sync for PointIndex
impl Unpin for PointIndex
impl UnsafeUnpin for PointIndex
impl UnwindSafe for PointIndex
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