ProjectMultiExt

Trait ProjectMultiExt 

Source
pub trait ProjectMultiExt<T: RealField + Copy, const D: usize, const H: usize>: ProjectMulti<T, D, H> + Sized {
    // Provided methods
    fn dynamic(&self) -> &dyn ProjectMulti<T, D, H> { ... }
    fn constraint(&self) -> Constraint<T, &Self, D, H> { ... }
    fn dyn_constraint(&self) -> DynConstraint<'_, T, D, H> { ... }
    fn constraint_owned(self) -> Constraint<T, Self, D, H> { ... }
}

Provided Methods§

Source

fn dynamic(&self) -> &dyn ProjectMulti<T, D, H>

Source

fn constraint(&self) -> Constraint<T, &Self, D, H>

Source

fn dyn_constraint(&self) -> DynConstraint<'_, T, D, H>

Source

fn constraint_owned(self) -> Constraint<T, Self, D, H>

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: ProjectMulti<T, D, H>, T: RealField + Copy, const D: usize, const H: usize> ProjectMultiExt<T, D, H> for P