[][src]Struct ncollide_utils::data::uid_remap::FastKey

pub struct FastKey { /* fields omitted */ }

A special type of key used by UidRemap to perform faster lookups than with the user-defined id of type usize.

Methods

impl FastKey[src]

pub fn new_invalid() -> FastKey[src]

Creates a new invalid key that won't be used by the UidRemap structure, ever.

pub fn uid(&self) -> usize[src]

The small uid contained by this key.

Trait Implementations

impl HashFun<FastKey> for FastKeyTWHash[src]

impl Eq for FastKey[src]

impl Copy for FastKey[src]

impl PartialOrd<FastKey> for FastKey[src]

impl PartialEq<FastKey> for FastKey[src]

impl Clone for FastKey[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Ord for FastKey[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl Debug for FastKey[src]

impl<O> Index<FastKey> for UidRemap<O>[src]

type Output = O

The returned type after indexing.

impl<O> IndexMut<FastKey> for UidRemap<O>[src]

impl Hash for FastKey[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for FastKey

impl Sync for FastKey

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: Copy + PartialEq<T> + Any + Debug
[src]

fn is<T>() -> bool where
    T: Scalar
[src]

Tests if Self the the same as the type T Read more