ProjectSingleExt

Trait ProjectSingleExt 

Source
pub trait ProjectSingleExt<T: RealField + Copy, const D: usize>: ProjectSingle<T, D> + Sized {
    // Provided methods
    fn time_fixed(self) -> Fixed<Self> { ... }
    fn time_ranged(self, range: Range<usize>) -> Ranged<Self> { ... }
    fn dim_lift<const N: usize>(self, indices: [usize; D]) -> Lift<Self, D, N> { ... }
}

Provided Methods§

Source

fn time_fixed(self) -> Fixed<Self>

Source

fn time_ranged(self, range: Range<usize>) -> Ranged<Self>

Source

fn dim_lift<const N: usize>(self, indices: [usize; D]) -> Lift<Self, D, N>

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: ProjectSingle<T, D>, T: RealField + Copy, const D: usize> ProjectSingleExt<T, D> for P