[][src]Struct appr_dbscan::utils::CellIndexPoint

pub struct CellIndexPoint<const D: usize> {
    pub index: CellIndex<D>,
}

Mock struct to use RTrees with const generics

Fields

index: CellIndex<D>

Trait Implementations

impl<const D: usize> Clone for CellIndexPoint<D>[src]

impl<const D: usize> Copy for CellIndexPoint<D>[src]

impl<const D: usize> Debug for CellIndexPoint<D>[src]

impl<const D: usize> PartialEq<CellIndexPoint<D>> for CellIndexPoint<D>[src]

impl<const D: usize> Point for CellIndexPoint<D>[src]

type Scalar = i64

The number type used by this point type.

impl<const D: usize> StructuralPartialEq for CellIndexPoint<D>[src]

Auto Trait Implementations

impl<const D: usize> RefUnwindSafe for CellIndexPoint<D>

impl<const D: usize> Send for CellIndexPoint<D>

impl<const D: usize> Sync for CellIndexPoint<D>

impl<const D: usize> Unpin for CellIndexPoint<D>

impl<const D: usize> UnwindSafe for CellIndexPoint<D>

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<P> PointDistance for P where
    P: Point
[src]

impl<P> RTreeObject for P where
    P: Point
[src]

type Envelope = AABB<P>

The object's envelope type. Usually, AABB will be the right choice. This type also defines the objects dimensionality. Read more

impl<T> Same<T> for T

type Output = T

Should always be Self

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.