Struct pasture_core::math::Octant[][src]

pub struct Octant(_);

Wrapper type around an u8 that encodes the index of an octant within an octree. Since there are only 8 possible octants, this type is only valid for values in [0;7] and acts as a safeguard to prevent out-of-bounds errors when passing around and setting octant indices

Implementations

impl Octant[src]

pub const ZERO: Octant[src]

Constant for the octant with index 0

pub const ONE: Octant[src]

Constant for the octant with index 1

pub const TWO: Octant[src]

Constant for the octant with index 2

pub const THREE: Octant[src]

Constant for the octant with index 3

pub const FOUR: Octant[src]

Constant for the octant with index 4

pub const FIVE: Octant[src]

Constant for the octant with index 5

pub const SIX: Octant[src]

Constant for the octant with index 6

pub const SEVEN: Octant[src]

Constant for the octant with index 7

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

The index of the associated Octant as an u8 value

Trait Implementations

impl Clone for Octant[src]

impl Copy for Octant[src]

impl Debug for Octant[src]

impl Eq for Octant[src]

impl Ord for Octant[src]

impl PartialEq<Octant> for Octant[src]

impl PartialOrd<Octant> for Octant[src]

impl StructuralEq for Octant[src]

impl StructuralPartialEq for Octant[src]

impl TryFrom<u8> for Octant[src]

type Error = OctantIndexOutOfBoundsError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Octant

impl Send for Octant

impl Sync for Octant

impl Unpin for Octant

impl UnwindSafe for Octant

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> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: Copy + PartialEq<T> + Debug + Any
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,