Struct static_aabb2d_index::NeighborsState[][src]

pub struct NeighborsState<T> where
    T: IndexableNum
{ /* fields omitted */ }

Holds state for priority queue used in nearest neighbors query.

Note this type is public for use in passing in an existing priority queue but all fields and constructor are private for internal use only.

Trait Implementations

impl<T: Clone> Clone for NeighborsState<T> where
    T: IndexableNum
[src]

impl<T: Copy> Copy for NeighborsState<T> where
    T: IndexableNum
[src]

impl<T: Debug> Debug for NeighborsState<T> where
    T: IndexableNum
[src]

impl<T> Eq for NeighborsState<T> where
    T: IndexableNum
[src]

impl<T> Ord for NeighborsState<T> where
    T: IndexableNum
[src]

impl<T: PartialEq> PartialEq<NeighborsState<T>> for NeighborsState<T> where
    T: IndexableNum
[src]

impl<T> PartialOrd<NeighborsState<T>> for NeighborsState<T> where
    T: IndexableNum
[src]

impl<T> StructuralPartialEq for NeighborsState<T> where
    T: IndexableNum
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for NeighborsState<T> where
    T: RefUnwindSafe

impl<T> Send for NeighborsState<T> where
    T: Send

impl<T> Sync for NeighborsState<T> where
    T: Sync

impl<T> Unpin for NeighborsState<T> where
    T: Unpin

impl<T> UnwindSafe for NeighborsState<T> where
    T: UnwindSafe

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> 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, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.