[][src]Struct space::Indices

pub struct Indices<A>(pub A);

This can be used to return an iterable set of indices over a search index by wrapping any type that implements AsRef<[usize]>.

This is useful when you have an array of indicies that were deposited into a mutable slice or stored in an array as the result of a kNN search and would like to return them in such a way that they can be iterated over easily.

Trait Implementations

impl<A> IntoIterator for Indices<A> where
    A: AsRef<[usize]>, 
[src]

type Item = usize

The type of the elements being iterated over.

type IntoIter = IndexIter<A>

Which kind of iterator are we turning this into?

Auto Trait Implementations

impl<A> Send for Indices<A> where
    A: Send

impl<A> Sync for Indices<A> where
    A: Sync

impl<A> Unpin for Indices<A> where
    A: Unpin

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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.