pub struct NInt<U>where
    U: Unsigned + NonZero,{ /* private fields */ }
Expand description

Type-level signed integers with negative sign.

Implementations§

source§

impl<U> NInt<U>where U: Unsigned + NonZero,

source

pub fn new() -> NInt<U>

Instantiates a singleton representing this strictly negative integer.

Trait Implementations§

source§

impl<U> Abs for NInt<U>where U: Unsigned + NonZero,

§

type Output = PInt<U>

The absolute value.
source§

impl<Ul, Ur> Add<NInt<Ur>> for NInt<Ul>where Ul: Unsigned + NonZero + Add<Ur>, Ur: Unsigned + NonZero, <Ul as Add<Ur>>::Output: Unsigned + NonZero,

N(Ul) + N(Ur) = N(Ul + Ur)

§

type Output = NInt<<Ul as Add<Ur>>::Output>

The resulting type after applying the + operator.
source§

fn add(self, _: NInt<Ur>) -> <NInt<Ul> as Add<NInt<Ur>>>::Output

Performs the + operation. Read more
source§

impl<Ul, Ur> Add<NInt<Ur>> for PInt<Ul>where Ul: Unsigned + NonZero + Cmp<Ur> + PrivateIntegerAdd<<Ul as Cmp<Ur>>::Output, Ur>, Ur: Unsigned + NonZero,

P(Ul) + N(Ur): We resolve this with our PrivateAdd

§

type Output = <Ul as PrivateIntegerAdd<<Ul as Cmp<Ur>>::Output, Ur>>::Output

The resulting type after applying the + operator.
source§

fn add(self, rhs: NInt<Ur>) -> <PInt<Ul> as Add<NInt<Ur>>>::Output

Performs the + operation. Read more
source§

impl<Ul, Ur> Add<PInt<Ur>> for NInt<Ul>where Ul: Unsigned + NonZero, Ur: Unsigned + NonZero + Cmp<Ul> + PrivateIntegerAdd<<Ur as Cmp<Ul>>::Output, Ul>,

N(Ul) + P(Ur): We resolve this with our PrivateAdd

§

type Output = <Ur as PrivateIntegerAdd<<Ur as Cmp<Ul>>::Output, Ul>>::Output

The resulting type after applying the + operator.
source§

fn add(self, rhs: PInt<Ur>) -> <NInt<Ul> as Add<PInt<Ur>>>::Output

Performs the + operation. Read more
source§

impl<U> Add<Z0> for NInt<U>where U: Unsigned + NonZero,

NInt + Z0 = NInt

§

type Output = NInt<U>

The resulting type after applying the + operator.
source§

fn add(self, _: Z0) -> <NInt<U> as Add<Z0>>::Output

Performs the + operation. Read more
source§

impl<U> Clone for NInt<U>where U: Clone + Unsigned + NonZero,

source§

fn clone(&self) -> NInt<U>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<P, N> Cmp<NInt<N>> for PInt<P>where P: Unsigned + NonZero, N: Unsigned + NonZero,

X > - Y

§

type Output = Greater

The result of the comparison. It should only ever be one of Greater, Less, or Equal.
source§

impl<Nl, Nr> Cmp<NInt<Nr>> for NInt<Nl>where Nl: Unsigned + NonZero, Nr: Cmp<Nl> + Unsigned + NonZero,

-X <==> -Y

§

type Output = <Nr as Cmp<Nl>>::Output

The result of the comparison. It should only ever be one of Greater, Less, or Equal.
source§

impl<U> Cmp<NInt<U>> for Z0where U: Unsigned + NonZero,

0 > -X

§

type Output = Greater

The result of the comparison. It should only ever be one of Greater, Less, or Equal.
source§

impl<P, N> Cmp<PInt<P>> for NInt<N>where P: Unsigned + NonZero, N: Unsigned + NonZero,

-X < Y

§

type Output = Less

The result of the comparison. It should only ever be one of Greater, Less, or Equal.
source§

impl<U> Cmp<Z0> for NInt<U>where U: Unsigned + NonZero,

-X < 0

§

type Output = Less

The result of the comparison. It should only ever be one of Greater, Less, or Equal.
source§

impl<U> Debug for NInt<U>where U: Debug + Unsigned + NonZero,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<U> Default for NInt<U>where U: Default + Unsigned + NonZero,

source§

fn default() -> NInt<U>

Returns the “default value” for a type. Read more
source§

impl<Ul, Ur> Div<NInt<Ur>> for NInt<Ul>where Ul: Unsigned + NonZero + Cmp<Ur>, Ur: Unsigned + NonZero, NInt<Ul>: PrivateDivInt<<Ul as Cmp<Ur>>::Output, NInt<Ur>>,

$A<Ul> / $B<Ur> = $R<Ul / Ur>

§

type Output = <NInt<Ul> as PrivateDivInt<<Ul as Cmp<Ur>>::Output, NInt<Ur>>>::Output

The resulting type after applying the / operator.
source§

fn div(self, rhs: NInt<Ur>) -> <NInt<Ul> as Div<NInt<Ur>>>::Output

Performs the / operation. Read more
source§

impl<Ul, Ur> Div<NInt<Ur>> for PInt<Ul>where Ul: Unsigned + NonZero + Cmp<Ur>, Ur: Unsigned + NonZero, PInt<Ul>: PrivateDivInt<<Ul as Cmp<Ur>>::Output, NInt<Ur>>,

$A<Ul> / $B<Ur> = $R<Ul / Ur>

§

type Output = <PInt<Ul> as PrivateDivInt<<Ul as Cmp<Ur>>::Output, NInt<Ur>>>::Output

The resulting type after applying the / operator.
source§

fn div(self, rhs: NInt<Ur>) -> <PInt<Ul> as Div<NInt<Ur>>>::Output

Performs the / operation. Read more
source§

impl<Ul, Ur> Div<PInt<Ur>> for NInt<Ul>where Ul: Unsigned + NonZero + Cmp<Ur>, Ur: Unsigned + NonZero, NInt<Ul>: PrivateDivInt<<Ul as Cmp<Ur>>::Output, PInt<Ur>>,

$A<Ul> / $B<Ur> = $R<Ul / Ur>

§

type Output = <NInt<Ul> as PrivateDivInt<<Ul as Cmp<Ur>>::Output, PInt<Ur>>>::Output

The resulting type after applying the / operator.
source§

fn div(self, rhs: PInt<Ur>) -> <NInt<Ul> as Div<PInt<Ur>>>::Output

Performs the / operation. Read more
source§

impl<U> Gcd<NInt<U>> for Z0where U: Unsigned + NonZero,

§

type Output = PInt<U>

The greatest common divisor.
source§

impl<U1, U2> Gcd<NInt<U2>> for NInt<U1>where U1: Unsigned + NonZero + Gcd<U2>, U2: Unsigned + NonZero, <U1 as Gcd<U2>>::Output: Unsigned + NonZero,

§

type Output = PInt<<U1 as Gcd<U2>>::Output>

The greatest common divisor.
source§

impl<U1, U2> Gcd<NInt<U2>> for PInt<U1>where U1: Unsigned + NonZero + Gcd<U2>, U2: Unsigned + NonZero, <U1 as Gcd<U2>>::Output: Unsigned + NonZero,

§

type Output = PInt<<U1 as Gcd<U2>>::Output>

The greatest common divisor.
source§

impl<U1, U2> Gcd<PInt<U2>> for NInt<U1>where U1: Unsigned + NonZero + Gcd<U2>, U2: Unsigned + NonZero, <U1 as Gcd<U2>>::Output: Unsigned + NonZero,

§

type Output = PInt<<U1 as Gcd<U2>>::Output>

The greatest common divisor.
source§

impl<U> Gcd<Z0> for NInt<U>where U: Unsigned + NonZero,

§

type Output = PInt<U>

The greatest common divisor.
source§

impl<U> Hash for NInt<U>where U: Hash + Unsigned + NonZero,

source§

fn hash<__H>(&self, state: &mut __H)where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<U> Integer for NInt<U>where U: Unsigned + NonZero,

source§

const I8: i8 = -((U::U8 - 1) as i8) - 1

source§

const I16: i16 = -((U::U16 - 1) as i16) - 1

source§

const I32: i32 = -((U::U32 - 1) as i32) - 1

source§

const I64: i64 = -((U::U64 - 1) as i64) - 1

source§

const ISIZE: isize = -((U::USIZE - 1) as isize) - 1

source§

fn to_i8() -> i8

source§

fn to_i16() -> i16

source§

fn to_i32() -> i32

source§

fn to_i64() -> i64

source§

fn to_isize() -> isize

source§

impl<U> Max<NInt<U>> for Z0where U: Unsigned + NonZero,

§

type Output = Z0

The type of the maximum of Self and Rhs
source§

fn max(self, _: NInt<U>) -> <Z0 as Max<NInt<U>>>::Output

Method returning the maximum
source§

impl<Ul, Ur> Max<NInt<Ur>> for NInt<Ul>where Ul: Unsigned + NonZero + Min<Ur>, Ur: Unsigned + NonZero, <Ul as Min<Ur>>::Output: Unsigned + NonZero,

§

type Output = NInt<<Ul as Min<Ur>>::Output>

The type of the maximum of Self and Rhs
source§

fn max(self, rhs: NInt<Ur>) -> <NInt<Ul> as Max<NInt<Ur>>>::Output

Method returning the maximum
source§

impl<Ul, Ur> Max<NInt<Ur>> for PInt<Ul>where Ul: Unsigned + NonZero, Ur: Unsigned + NonZero,

§

type Output = PInt<Ul>

The type of the maximum of Self and Rhs
source§

fn max(self, _: NInt<Ur>) -> <PInt<Ul> as Max<NInt<Ur>>>::Output

Method returning the maximum
source§

impl<Ul, Ur> Max<PInt<Ur>> for NInt<Ul>where Ul: Unsigned + NonZero, Ur: Unsigned + NonZero,

§

type Output = PInt<Ur>

The type of the maximum of Self and Rhs
source§

fn max(self, rhs: PInt<Ur>) -> <NInt<Ul> as Max<PInt<Ur>>>::Output

Method returning the maximum
source§

impl<U> Max<Z0> for NInt<U>where U: Unsigned + NonZero,

§

type Output = Z0

The type of the maximum of Self and Rhs
source§

fn max(self, rhs: Z0) -> <NInt<U> as Max<Z0>>::Output

Method returning the maximum
source§

impl<U> Min<NInt<U>> for Z0where U: Unsigned + NonZero,

§

type Output = NInt<U>

The type of the minimum of Self and Rhs
source§

fn min(self, rhs: NInt<U>) -> <Z0 as Min<NInt<U>>>::Output

Method returning the minimum
source§

impl<Ul, Ur> Min<NInt<Ur>> for NInt<Ul>where Ul: Unsigned + NonZero + Max<Ur>, Ur: Unsigned + NonZero, <Ul as Max<Ur>>::Output: Unsigned + NonZero,

§

type Output = NInt<<Ul as Max<Ur>>::Output>

The type of the minimum of Self and Rhs
source§

fn min(self, rhs: NInt<Ur>) -> <NInt<Ul> as Min<NInt<Ur>>>::Output

Method returning the minimum
source§

impl<Ul, Ur> Min<NInt<Ur>> for PInt<Ul>where Ul: Unsigned + NonZero, Ur: Unsigned + NonZero,

§

type Output = NInt<Ur>

The type of the minimum of Self and Rhs
source§

fn min(self, rhs: NInt<Ur>) -> <PInt<Ul> as Min<NInt<Ur>>>::Output

Method returning the minimum
source§

impl<Ul, Ur> Min<PInt<Ur>> for NInt<Ul>where Ul: Unsigned + NonZero, Ur: Unsigned + NonZero,

§

type Output = NInt<Ul>

The type of the minimum of Self and Rhs
source§

fn min(self, _: PInt<Ur>) -> <NInt<Ul> as Min<PInt<Ur>>>::Output

Method returning the minimum
source§

impl<U> Min<Z0> for NInt<U>where U: Unsigned + NonZero,

§

type Output = NInt<U>

The type of the minimum of Self and Rhs
source§

fn min(self, _: Z0) -> <NInt<U> as Min<Z0>>::Output

Method returning the minimum
source§

impl<U> Mul<ATerm> for NInt<U>where U: Unsigned + NonZero,

§

type Output = ATerm

The resulting type after applying the * operator.
source§

fn mul(self, _: ATerm) -> <NInt<U> as Mul<ATerm>>::Output

Performs the * operation. Read more
source§

impl<Ul, Ur> Mul<NInt<Ur>> for NInt<Ul>where Ul: Unsigned + NonZero + Mul<Ur>, Ur: Unsigned + NonZero, <Ul as Mul<Ur>>::Output: Unsigned + NonZero,

N(Ul) * N(Ur) = P(Ul * Ur)

§

type Output = PInt<<Ul as Mul<Ur>>::Output>

The resulting type after applying the * operator.
source§

fn mul(self, _: NInt<Ur>) -> <NInt<Ul> as Mul<NInt<Ur>>>::Output

Performs the * operation. Read more
source§

impl<Ul, Ur> Mul<NInt<Ur>> for PInt<Ul>where Ul: Unsigned + NonZero + Mul<Ur>, Ur: Unsigned + NonZero, <Ul as Mul<Ur>>::Output: Unsigned + NonZero,

P(Ul) * N(Ur) = N(Ul * Ur)

§

type Output = NInt<<Ul as Mul<Ur>>::Output>

The resulting type after applying the * operator.
source§

fn mul(self, _: NInt<Ur>) -> <PInt<Ul> as Mul<NInt<Ur>>>::Output

Performs the * operation. Read more
source§

impl<Ul, Ur> Mul<PInt<Ur>> for NInt<Ul>where Ul: Unsigned + NonZero + Mul<Ur>, Ur: Unsigned + NonZero, <Ul as Mul<Ur>>::Output: Unsigned + NonZero,

N(Ul) * P(Ur) = N(Ul * Ur)

§

type Output = NInt<<Ul as Mul<Ur>>::Output>

The resulting type after applying the * operator.
source§

fn mul(self, _: PInt<Ur>) -> <NInt<Ul> as Mul<PInt<Ur>>>::Output

Performs the * operation. Read more
source§

impl<V, A, U> Mul<TArr<V, A>> for NInt<U>where U: Unsigned + NonZero, NInt<U>: Mul<A> + Mul<V>,

§

type Output = TArr<<NInt<U> as Mul<V>>::Output, <NInt<U> as Mul<A>>::Output>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: TArr<V, A>) -> <NInt<U> as Mul<TArr<V, A>>>::Output

Performs the * operation. Read more
source§

impl<U> Mul<Z0> for NInt<U>where U: Unsigned + NonZero,

N * Z0 = Z0

§

type Output = Z0

The resulting type after applying the * operator.
source§

fn mul(self, _: Z0) -> <NInt<U> as Mul<Z0>>::Output

Performs the * operation. Read more
source§

impl<U> Neg for NInt<U>where U: Unsigned + NonZero,

-NInt = PInt

§

type Output = PInt<U>

The resulting type after applying the - operator.
source§

fn neg(self) -> <NInt<U> as Neg>::Output

Performs the unary - operation. Read more
source§

impl<U> Ord for NInt<U>where U: Ord + Unsigned + NonZero,

source§

fn cmp(&self, other: &NInt<U>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl<U> PartialEq<NInt<U>> for NInt<U>where U: PartialEq<U> + Unsigned + NonZero,

source§

fn eq(&self, other: &NInt<U>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<U> PartialOrd<NInt<U>> for NInt<U>where U: PartialOrd<U> + Unsigned + NonZero,

source§

fn partial_cmp(&self, other: &NInt<U>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<U> Pow<NInt<U>> for PInt<UInt<UTerm, B1>>where U: Unsigned + NonZero,

1^N = 1

§

type Output = PInt<UInt<UTerm, B1>>

The result of the exponentiation.
source§

fn powi(self, _: NInt<U>) -> <PInt<UInt<UTerm, B1>> as Pow<NInt<U>>>::Output

This function isn’t used in this crate, but may be useful for others. It is implemented for primitives. Read more
source§

impl<U> Pow<NInt<U>> for Z0where U: Unsigned + NonZero,

0^N = 0

§

type Output = Z0

The result of the exponentiation.
source§

fn powi(self, _: NInt<U>) -> <Z0 as Pow<NInt<U>>>::Output

This function isn’t used in this crate, but may be useful for others. It is implemented for primitives. Read more
source§

impl<U> Pow<NInt<U>> for f32where U: Unsigned + NonZero,

§

type Output = f32

The result of the exponentiation.
source§

fn powi(self, _: NInt<U>) -> <f32 as Pow<NInt<U>>>::Output

This function isn’t used in this crate, but may be useful for others. It is implemented for primitives. Read more
source§

impl<U> Pow<NInt<U>> for f64where U: Unsigned + NonZero,

§

type Output = f64

The result of the exponentiation.
source§

fn powi(self, _: NInt<U>) -> <f64 as Pow<NInt<U>>>::Output

This function isn’t used in this crate, but may be useful for others. It is implemented for primitives. Read more
source§

impl<U> Pow<NInt<UInt<U, B0>>> for NInt<UInt<UTerm, B1>>where U: Unsigned,

(-1)^N = 1 if N is even

§

type Output = PInt<UInt<UTerm, B1>>

The result of the exponentiation.
source§

fn powi( self, _: NInt<UInt<U, B0>> ) -> <NInt<UInt<UTerm, B1>> as Pow<NInt<UInt<U, B0>>>>::Output

This function isn’t used in this crate, but may be useful for others. It is implemented for primitives. Read more
source§

impl<U> Pow<NInt<UInt<U, B1>>> for NInt<UInt<UTerm, B1>>where U: Unsigned,

(-1)^N = -1 if N is odd

§

type Output = NInt<UInt<UTerm, B1>>

The result of the exponentiation.
source§

fn powi( self, _: NInt<UInt<U, B1>> ) -> <NInt<UInt<UTerm, B1>> as Pow<NInt<UInt<U, B1>>>>::Output

This function isn’t used in this crate, but may be useful for others. It is implemented for primitives. Read more
source§

impl<Ul, Ur> Pow<PInt<UInt<Ur, B0>>> for NInt<Ul>where Ul: Unsigned + NonZero + Pow<UInt<Ur, B0>>, Ur: Unsigned, <Ul as Pow<UInt<Ur, B0>>>::Output: Unsigned + NonZero,

N(Ul)^P(Ur) = P(Ul^Ur) if Ur is even

§

type Output = PInt<<Ul as Pow<UInt<Ur, B0>>>::Output>

The result of the exponentiation.
source§

fn powi( self, _: PInt<UInt<Ur, B0>> ) -> <NInt<Ul> as Pow<PInt<UInt<Ur, B0>>>>::Output

This function isn’t used in this crate, but may be useful for others. It is implemented for primitives. Read more
source§

impl<Ul, Ur> Pow<PInt<UInt<Ur, B1>>> for NInt<Ul>where Ul: Unsigned + NonZero + Pow<UInt<Ur, B1>>, Ur: Unsigned, <Ul as Pow<UInt<Ur, B1>>>::Output: Unsigned + NonZero,

N(Ul)^P(Ur) = N(Ul^Ur) if Ur is odd

§

type Output = NInt<<Ul as Pow<UInt<Ur, B1>>>::Output>

The result of the exponentiation.
source§

fn powi( self, _: PInt<UInt<Ur, B1>> ) -> <NInt<Ul> as Pow<PInt<UInt<Ur, B1>>>>::Output

This function isn’t used in this crate, but may be useful for others. It is implemented for primitives. Read more
source§

impl<U> Pow<Z0> for NInt<U>where U: Unsigned + NonZero,

N^0 = 1

§

type Output = PInt<UInt<UTerm, B1>>

The result of the exponentiation.
source§

fn powi(self, _: Z0) -> <NInt<U> as Pow<Z0>>::Output

This function isn’t used in this crate, but may be useful for others. It is implemented for primitives. Read more
source§

impl<Ul, Ur> Rem<NInt<Ur>> for NInt<Ul>where Ul: Unsigned + NonZero + Rem<Ur>, Ur: Unsigned + NonZero, NInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, NInt<Ur>>,

$A<Ul> % $B<Ur> = $R<Ul % Ur>

§

type Output = <NInt<Ul> as PrivateRem<<Ul as Rem<Ur>>::Output, NInt<Ur>>>::Output

The resulting type after applying the % operator.
source§

fn rem(self, rhs: NInt<Ur>) -> <NInt<Ul> as Rem<NInt<Ur>>>::Output

Performs the % operation. Read more
source§

impl<Ul, Ur> Rem<NInt<Ur>> for PInt<Ul>where Ul: Unsigned + NonZero + Rem<Ur>, Ur: Unsigned + NonZero, PInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, NInt<Ur>>,

$A<Ul> % $B<Ur> = $R<Ul % Ur>

§

type Output = <PInt<Ul> as PrivateRem<<Ul as Rem<Ur>>::Output, NInt<Ur>>>::Output

The resulting type after applying the % operator.
source§

fn rem(self, rhs: NInt<Ur>) -> <PInt<Ul> as Rem<NInt<Ur>>>::Output

Performs the % operation. Read more
source§

impl<Ul, Ur> Rem<PInt<Ur>> for NInt<Ul>where Ul: Unsigned + NonZero + Rem<Ur>, Ur: Unsigned + NonZero, NInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, PInt<Ur>>,

$A<Ul> % $B<Ur> = $R<Ul % Ur>

§

type Output = <NInt<Ul> as PrivateRem<<Ul as Rem<Ur>>::Output, PInt<Ur>>>::Output

The resulting type after applying the % operator.
source§

fn rem(self, rhs: PInt<Ur>) -> <NInt<Ul> as Rem<PInt<Ur>>>::Output

Performs the % operation. Read more
source§

impl<U> Sub<NInt<U>> for Z0where U: Unsigned + NonZero,

Z0 - N = P

§

type Output = PInt<U>

The resulting type after applying the - operator.
source§

fn sub(self, _: NInt<U>) -> <Z0 as Sub<NInt<U>>>::Output

Performs the - operation. Read more
source§

impl<Ul, Ur> Sub<NInt<Ur>> for NInt<Ul>where Ul: Unsigned + NonZero, Ur: Unsigned + NonZero + Cmp<Ul> + PrivateIntegerAdd<<Ur as Cmp<Ul>>::Output, Ul>,

N(Ul) - N(Ur): We resolve this with our PrivateAdd

§

type Output = <Ur as PrivateIntegerAdd<<Ur as Cmp<Ul>>::Output, Ul>>::Output

The resulting type after applying the - operator.
source§

fn sub(self, rhs: NInt<Ur>) -> <NInt<Ul> as Sub<NInt<Ur>>>::Output

Performs the - operation. Read more
source§

impl<Ul, Ur> Sub<NInt<Ur>> for PInt<Ul>where Ul: Unsigned + NonZero + Add<Ur>, Ur: Unsigned + NonZero, <Ul as Add<Ur>>::Output: Unsigned + NonZero,

P(Ul) - N(Ur) = P(Ul + Ur)

§

type Output = PInt<<Ul as Add<Ur>>::Output>

The resulting type after applying the - operator.
source§

fn sub(self, _: NInt<Ur>) -> <PInt<Ul> as Sub<NInt<Ur>>>::Output

Performs the - operation. Read more
source§

impl<Ul, Ur> Sub<PInt<Ur>> for NInt<Ul>where Ul: Unsigned + NonZero + Add<Ur>, Ur: Unsigned + NonZero, <Ul as Add<Ur>>::Output: Unsigned + NonZero,

N(Ul) - P(Ur) = N(Ul + Ur)

§

type Output = NInt<<Ul as Add<Ur>>::Output>

The resulting type after applying the - operator.
source§

fn sub(self, _: PInt<Ur>) -> <NInt<Ul> as Sub<PInt<Ur>>>::Output

Performs the - operation. Read more
source§

impl<U> Sub<Z0> for NInt<U>where U: Unsigned + NonZero,

NInt - Z0 = NInt

§

type Output = NInt<U>

The resulting type after applying the - operator.
source§

fn sub(self, _: Z0) -> <NInt<U> as Sub<Z0>>::Output

Performs the - operation. Read more
source§

impl<U> ToInt<i16> for NInt<U>where U: Unsigned + NonZero,

source§

fn to_int() -> i16

Method returning the concrete value for the type.
source§

const INT: i16 = Self::I16

The concrete value for the type. Can be used in const contexts.
source§

impl<U> ToInt<i32> for NInt<U>where U: Unsigned + NonZero,

source§

fn to_int() -> i32

Method returning the concrete value for the type.
source§

const INT: i32 = Self::I32

The concrete value for the type. Can be used in const contexts.
source§

impl<U> ToInt<i64> for NInt<U>where U: Unsigned + NonZero,

source§

fn to_int() -> i64

Method returning the concrete value for the type.
source§

const INT: i64 = Self::I64

The concrete value for the type. Can be used in const contexts.
source§

impl<U> ToInt<i8> for NInt<U>where U: Unsigned + NonZero,

source§

fn to_int() -> i8

Method returning the concrete value for the type.
source§

const INT: i8 = Self::I8

The concrete value for the type. Can be used in const contexts.
source§

impl<U> Copy for NInt<U>where U: Copy + Unsigned + NonZero,

source§

impl<U> Eq for NInt<U>where U: Eq + Unsigned + NonZero,

source§

impl<U> NonZero for NInt<U>where U: Unsigned + NonZero,

source§

impl<U> StructuralEq for NInt<U>where U: Unsigned + NonZero,

source§

impl<U> StructuralPartialEq for NInt<U>where U: Unsigned + NonZero,

Auto Trait Implementations§

§

impl<U> RefUnwindSafe for NInt<U>where U: RefUnwindSafe,

§

impl<U> Send for NInt<U>where U: Send,

§

impl<U> Sync for NInt<U>where U: Sync,

§

impl<U> Unpin for NInt<U>where U: Unpin,

§

impl<U> UnwindSafe for NInt<U>where U: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Conv for T

§

fn conv<T>(self) -> Twhere Self: Into<T>,

Converts self into T using Into<T>. Read more
§

impl<T> FmtForward for T

§

fn fmt_binary(self) -> FmtBinary<Self>where Self: Binary,

Causes self to use its Binary implementation when Debug-formatted.
§

fn fmt_display(self) -> FmtDisplay<Self>where Self: Display,

Causes self to use its Display implementation when Debug-formatted.
§

fn fmt_lower_exp(self) -> FmtLowerExp<Self>where Self: LowerExp,

Causes self to use its LowerExp implementation when Debug-formatted.
§

fn fmt_lower_hex(self) -> FmtLowerHex<Self>where Self: LowerHex,

Causes self to use its LowerHex implementation when Debug-formatted.
§

fn fmt_octal(self) -> FmtOctal<Self>where Self: Octal,

Causes self to use its Octal implementation when Debug-formatted.
§

fn fmt_pointer(self) -> FmtPointer<Self>where Self: Pointer,

Causes self to use its Pointer implementation when Debug-formatted.
§

fn fmt_upper_exp(self) -> FmtUpperExp<Self>where Self: UpperExp,

Causes self to use its UpperExp implementation when Debug-formatted.
§

fn fmt_upper_hex(self) -> FmtUpperHex<Self>where Self: UpperHex,

Causes self to use its UpperHex implementation when Debug-formatted.
§

fn fmt_list(self) -> FmtList<Self>where &'a Self: for<'a> IntoIterator,

Formats each item in a sequence. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<M, N> PartialDiv<N> for Mwhere M: Integer + Div<N> + Rem<N, Output = Z0>,

§

type Output = <M as Div<N>>::Output

The type of the result of the division
source§

fn partial_div(self, rhs: N) -> <M as PartialDiv<N>>::Output

Method for performing the division
§

impl<T> Pipe for Twhere T: ?Sized,

§

fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere Self: Sized,

Pipes by value. This is generally the method you want to use. Read more
§

fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere R: 'a,

Borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere R: 'a,

Mutably borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere Self: Borrow<B>, B: 'a + ?Sized, R: 'a,

Borrows self, then passes self.borrow() into the pipe function. Read more
§

fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> Rwhere Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more
§

fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere Self: AsRef<U>, U: 'a + ?Sized, R: 'a,

Borrows self, then passes self.as_ref() into the pipe function.
§

fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere Self: AsMut<U>, U: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.as_mut() into the pipe function.
§

fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> Rwhere Self: Deref<Target = T>, T: 'a + ?Sized, R: 'a,

Borrows self, then passes self.deref() into the pipe function.
§

fn pipe_deref_mut<'a, T, R>( &'a mut self, func: impl FnOnce(&'a mut T) -> R ) -> Rwhere Self: DerefMut<Target = T> + Deref, T: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.deref_mut() into the pipe function.
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
§

impl<T> Tap for T

§

fn tap(self, func: impl FnOnce(&Self)) -> Self

Immutable access to a value. Read more
§

fn tap_mut(self, func: impl FnOnce(&mut Self)) -> Self

Mutable access to a value. Read more
§

fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,

Immutable access to the Borrow<B> of a value. Read more
§

fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,

Mutable access to the BorrowMut<B> of a value. Read more
§

fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,

Immutable access to the AsRef<R> view of a value. Read more
§

fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,

Mutable access to the AsMut<R> view of a value. Read more
§

fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere Self: Deref<Target = T>, T: ?Sized,

Immutable access to the Deref::Target of a value. Read more
§

fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere Self: DerefMut<Target = T> + Deref, T: ?Sized,

Mutable access to the Deref::Target of a value. Read more
§

fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self

Calls .tap() only in debug builds, and is erased in release builds.
§

fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self

Calls .tap_mut() only in debug builds, and is erased in release builds.
§

fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,

Calls .tap_borrow() only in debug builds, and is erased in release builds.
§

fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,

Calls .tap_borrow_mut() only in debug builds, and is erased in release builds.
§

fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,

Calls .tap_ref() only in debug builds, and is erased in release builds.
§

fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,

Calls .tap_ref_mut() only in debug builds, and is erased in release builds.
§

fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Selfwhere Self: Deref<Target = T>, T: ?Sized,

Calls .tap_deref() only in debug builds, and is erased in release builds.
§

fn tap_deref_mut_dbg<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere Self: DerefMut<Target = T> + Deref, T: ?Sized,

Calls .tap_deref_mut() only in debug builds, and is erased in release builds.
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T> TryConv for T

§

fn try_conv<T>(self) -> Result<T, Self::Error>where Self: TryInto<T>,

Attempts to convert self into T using TryInto<T>. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.