TreeIndex

Trait TreeIndex 

Source
pub trait TreeIndex:
    PrimInt
    + AsPrimitive<usize>
    + AsPrimitive<u8>
    + Shl<Self, Output = Self>
    + Debug
    + 'static { }
Expand description

Trait alias for types which can act as indices within an Octree.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<P> TreeIndex for P
where P: PrimInt + AsPrimitive<usize> + AsPrimitive<u8> + Shl<Self, Output = Self> + Debug + 'static,