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