nyx_space::linalg

Trait DimNameDiv

Source
pub trait DimNameDiv<D>: DimName
where D: DimName,
{ type Output: DimName; // Required method fn div(self, other: D) -> Self::Output; }

Required Associated Types§

Required Methods§

Source

fn div(self, other: D) -> Self::Output

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<const A: usize, const B: usize> DimNameDiv<Const<B>> for Const<A>