Skip to main content

RotDim

Trait RotDim 

Source
pub trait RotDim<const N: usize> {
    type Inner<S: Field>: RotInner<N, S>;
}

Required Associated Types§

Source

type Inner<S: Field>: RotInner<N, S>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl RotDim<2> for ()

Source§

type Inner<S: Field> = RotInner2<S>

Source§

impl RotDim<3> for ()

Source§

type Inner<S: Field> = RotInner3<S>

Implementors§