Trait IntRevInternal

Source
pub trait IntRevInternal<B: Int>: Int {
    type Output: Int;
}

Required Associated 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<M, N: Int> IntRevInternal<N> for Minus<M>
where M: IntRevInternal<Minus<N>> + Int,

Source§

impl<M, N: Int> IntRevInternal<N> for Plus<M>
where M: IntRevInternal<Plus<N>> + Int,

Source§

impl<M, N: Int> IntRevInternal<N> for Zero<M>
where M: IntRevInternal<Zero<N>> + Int,

Source§

impl<N: Int> IntRevInternal<N> for Term