Trait Signed

Source
pub trait Signed: Ops + Neg<Output = Self> { }
Expand description

A supertrait for vectors that allow arithmetic operations over signed types.

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<V> Signed for V
where V: Ops + Neg<Output = V>,