[][src]Struct svo::index_path::IndexPath

pub struct IndexPath(_);

Implementations

impl IndexPath[src]

pub fn new() -> Self[src]

pub fn is_empty(&self) -> bool[src]

pub fn is_full(&self) -> bool[src]

pub fn peek(&self) -> Corner[src]

pub fn pop(&self) -> Self[src]

pub fn push(&self, octant: Corner) -> Self[src]

pub fn count(&self) -> u8[src]

pub fn replace(&self, octant: Corner) -> Self[src]

pub fn len(&self) -> u8[src]

Trait Implementations

impl Clone for IndexPath[src]

impl Copy for IndexPath[src]

impl Debug for IndexPath[src]

impl Eq for IndexPath[src]

impl From<IndexPath> for Bounds[src]

impl From<NonZeroU64> for IndexPath[src]

impl Iterator for IndexPath[src]

type Item = Corner

The type of the elements being iterated over.

impl PartialEq<IndexPath> for IndexPath[src]

impl StructuralEq for IndexPath[src]

impl StructuralPartialEq for IndexPath[src]

Auto Trait Implementations

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> 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.