Trait nalgebra::base::dimension::DimName[][src]

pub trait DimName: Dim {
    type Value: NamedDim<Name = Self>;
    fn name() -> Self;

    fn dim() -> usize { ... }
}

Trait implemented exclusively by type-level integers.

Associated Types

Required Methods

The name of this dimension, i.e., the singleton Self.

Provided Methods

The value of this dimension.

Implementations on Foreign Types

impl<A: Bit + Any + Debug + Copy + PartialEq + Send + Sync, B: Bit + Any + Debug + Copy + PartialEq + Send + Sync, C: Bit + Any + Debug + Copy + PartialEq + Send + Sync, D: Bit + Any + Debug + Copy + PartialEq + Send + Sync, E: Bit + Any + Debug + Copy + PartialEq + Send + Sync, F: Bit + Any + Debug + Copy + PartialEq + Send + Sync, G: Bit + Any + Debug + Copy + PartialEq + Send + Sync> DimName for UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, A>, B>, C>, D>, E>, F>, G>
[src]

impl<U: Unsigned + DimName, B: Bit + Any + Debug + Copy + PartialEq + Send + Sync> DimName for UInt<U, B>
[src]

Implementors