pub struct PackedIndex(/* private fields */);Expand description
Wrapper type for a usize in which the lower 5 bits represent the index of 1 of 20 icosahedral faces and the
remaining bits represent the index of a triangular subdivision within that face.
Implementations§
Trait Implementations§
Source§impl Clone for PackedIndex
impl Clone for PackedIndex
Source§fn clone(&self) -> PackedIndex
fn clone(&self) -> PackedIndex
Returns a duplicate 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 PackedIndex
impl Debug for PackedIndex
Source§impl Default for PackedIndex
impl Default for PackedIndex
Source§fn default() -> PackedIndex
fn default() -> PackedIndex
Returns the “default value” for a type. Read more
Source§impl Hash for PackedIndex
impl Hash for PackedIndex
Source§impl Ord for PackedIndex
impl Ord for PackedIndex
Source§fn cmp(&self, other: &PackedIndex) -> Ordering
fn cmp(&self, other: &PackedIndex) -> 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 PackedIndex
impl PartialEq for PackedIndex
Source§impl PartialOrd for PackedIndex
impl PartialOrd for PackedIndex
impl Copy for PackedIndex
impl Eq for PackedIndex
impl StructuralPartialEq for PackedIndex
Auto Trait Implementations§
impl Freeze for PackedIndex
impl RefUnwindSafe for PackedIndex
impl Send for PackedIndex
impl Sync for PackedIndex
impl Unpin for PackedIndex
impl UnwindSafe for PackedIndex
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more