Trait nalgebra::ClosedSubAssign

source ·
pub trait ClosedSubAssign<Right = Self>: ClosedSub<Right> + SubAssign<Right> { }
Expand description

Trait alias for Sub and SubAssign with result of type Self.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, Right> ClosedSubAssign<Right> for T
where T: ClosedSub<Right> + SubAssign<Right>,