pub trait ClosedDiv<Right = Self>: Div<Right, Output = Self> + DivAssign<Right> { }
Expand description

Trait alias for Div and DivAssign with result of type Self.

Implementors