Overflow

Trait Overflow 

Source
pub trait Overflow<Lhs>
where Self: Type + Sized + Copy, Lhs: Type + Sized + Copy,
{ // Provided method fn overflows(self, lhs: Lhs) -> Operation<Lhs, Self> { ... } }

Provided Methods§

Source

fn overflows(self, lhs: Lhs) -> Operation<Lhs, Self>

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<L, R> Overflow<L> for R
where L: Type + Sized + Copy, R: Type + Sized + Copy,