pub trait DimName: Dim {
    type Value: NamedDim<Name = Self>;

    fn name() -> Self;

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

Trait implemented exclusively by type-level integers.

Required 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§

Implementors§