Trait nyx_space::linalg::DimMin

source ·
pub trait DimMin<D>: Dim
where D: Dim,
{ type Output: Dim; // Required method fn min(self, other: D) -> Self::Output; }

Required Associated Types§

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<D> DimMin<Dyn> for D
where D: DimName,

source§

impl<D> DimMin<D> for Dyn
where D: Dim,

source§

impl<const A: usize, const B: usize> DimMin<Const<B>> for Const<A>