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

Type-level signed integers with positive sign.

Implementations§

source§

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

source

pub fn new() -> PInt<U>

Instantiates a singleton representing this strictly positive integer.

Trait Implementations§

source§

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

§

type Output = PInt<U>

The absolute value.
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<Ul, Ur> Add<PInt<Ur>> for PInt<Ul>
where Ul: Unsigned + NonZero + Add<Ur>, Ur: Unsigned + NonZero, <Ul as Add<Ur>>::Output: Unsigned + NonZero,

P(Ul) + P(Ur) = P(Ul + Ur)

§

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

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

PInt + Z0 = PInt

§

type Output = PInt<U>

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

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

source§

fn clone(&self) -> PInt<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<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<Pl, Pr> Cmp<PInt<Pr>> for PInt<Pl>
where Pl: Cmp<Pr> + Unsigned + NonZero, Pr: Unsigned + NonZero,

X <==> Y

§

type Output = <Pl as Cmp<Pr>>::Output

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

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

0 < X

§

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 PInt<U>
where U: Unsigned + NonZero,

X > 0

§

type Output = Greater

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

impl<U> Debug for PInt<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 PInt<U>
where U: Default + Unsigned + NonZero,

source§

fn default() -> PInt<U>

Returns the “default value” for a type. 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<Ul, Ur> Div<PInt<Ur>> for PInt<Ul>
where Ul: Unsigned + NonZero + Cmp<Ur>, Ur: Unsigned + NonZero, PInt<Ul>: PrivateDivInt<<Ul as Cmp<Ur>>::Output, PInt<Ur>>,

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

§

type Output = <PInt<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>) -> <PInt<Ul> as Div<PInt<Ur>>>::Output

Performs the / operation. Read more
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<U> Gcd<PInt<U>> for Z0
where U: Unsigned + NonZero,

§

type Output = PInt<U>

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<U1, U2> Gcd<PInt<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<U> Gcd<Z0> for PInt<U>
where U: Unsigned + NonZero,

§

type Output = PInt<U>

The greatest common divisor.
source§

impl<U> Hash for PInt<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 PInt<U>
where U: Unsigned + NonZero,

source§

const I8: i8 = U::I8

source§

const I16: i16 = U::I16

source§

const I32: i32 = U::I32

source§

const I64: i64 = U::I64

source§

const ISIZE: isize = U::ISIZE

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<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<U> Max<PInt<U>> for Z0
where U: Unsigned + NonZero,

§

type Output = PInt<U>

The type of the maximum of Self and Rhs
source§

fn max(self, rhs: PInt<U>) -> <Z0 as Max<PInt<U>>>::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<Ul, Ur> Max<PInt<Ur>> for PInt<Ul>
where Ul: Unsigned + NonZero + Max<Ur>, Ur: Unsigned + NonZero, <Ul as Max<Ur>>::Output: Unsigned + NonZero,

§

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

The type of the maximum of Self and Rhs
source§

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

Method returning the maximum
source§

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

§

type Output = PInt<U>

The type of the maximum of Self and Rhs
source§

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

Method returning the maximum
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<U> Min<PInt<U>> for Z0
where U: Unsigned + NonZero,

§

type Output = Z0

The type of the minimum of Self and Rhs
source§

fn min(self, _: PInt<U>) -> <Z0 as Min<PInt<U>>>::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<Ul, Ur> Min<PInt<Ur>> for PInt<Ul>
where Ul: Unsigned + NonZero + Min<Ur>, Ur: Unsigned + NonZero, <Ul as Min<Ur>>::Output: Unsigned + NonZero,

§

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

The type of the minimum of Self and Rhs
source§

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

Method returning the minimum
source§

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

§

type Output = Z0

The type of the minimum of Self and Rhs
source§

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

Method returning the minimum
source§

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

§

type Output = ATerm

The resulting type after applying the * operator.
source§

fn mul(self, _: ATerm) -> <PInt<U> as Mul<ATerm>>::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<Ul, Ur> Mul<PInt<Ur>> for PInt<Ul>
where Ul: Unsigned + NonZero + Mul<Ur>, Ur: Unsigned + NonZero, <Ul as Mul<Ur>>::Output: Unsigned + NonZero,

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

§

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

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

§

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

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

P * Z0 = Z0

§

type Output = Z0

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

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

-PInt = NInt

§

type Output = NInt<U>

The resulting type after applying the - operator.
source§

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

Performs the unary - operation. Read more
source§

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

source§

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

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

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

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

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

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

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

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

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

source§

fn eq(&self, other: &PInt<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 for PInt<U>

source§

fn partial_cmp(&self, other: &PInt<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<PInt<U>> for Z0
where U: Unsigned + NonZero,

0^P = 0

§

type Output = Z0

The result of the exponentiation.
source§

fn powi(self, _: PInt<U>) -> <Z0 as Pow<PInt<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<PInt<U>> for f32
where U: Unsigned + NonZero,

§

type Output = f32

The result of the exponentiation.
source§

fn powi(self, _: PInt<U>) -> <f32 as Pow<PInt<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<PInt<U>> for f64
where U: Unsigned + NonZero,

§

type Output = f64

The result of the exponentiation.
source§

fn powi(self, _: PInt<U>) -> <f64 as Pow<PInt<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<PInt<U>> for i16
where U: Unsigned + NonZero,

§

type Output = i16

The result of the exponentiation.
source§

fn powi(self, _: PInt<U>) -> <i16 as Pow<PInt<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<PInt<U>> for i32
where U: Unsigned + NonZero,

§

type Output = i32

The result of the exponentiation.
source§

fn powi(self, _: PInt<U>) -> <i32 as Pow<PInt<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<PInt<U>> for i64
where U: Unsigned + NonZero,

§

type Output = i64

The result of the exponentiation.
source§

fn powi(self, _: PInt<U>) -> <i64 as Pow<PInt<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<PInt<U>> for i8
where U: Unsigned + NonZero,

§

type Output = i8

The result of the exponentiation.
source§

fn powi(self, _: PInt<U>) -> <i8 as Pow<PInt<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<PInt<U>> for isize
where U: Unsigned + NonZero,

§

type Output = isize

The result of the exponentiation.
source§

fn powi(self, _: PInt<U>) -> <isize as Pow<PInt<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<PInt<U>> for u16
where U: Unsigned + NonZero,

§

type Output = u16

The result of the exponentiation.
source§

fn powi(self, _: PInt<U>) -> <u16 as Pow<PInt<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<PInt<U>> for u32
where U: Unsigned + NonZero,

§

type Output = u32

The result of the exponentiation.
source§

fn powi(self, _: PInt<U>) -> <u32 as Pow<PInt<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<PInt<U>> for u64
where U: Unsigned + NonZero,

§

type Output = u64

The result of the exponentiation.
source§

fn powi(self, _: PInt<U>) -> <u64 as Pow<PInt<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<PInt<U>> for u8
where U: Unsigned + NonZero,

§

type Output = u8

The result of the exponentiation.
source§

fn powi(self, _: PInt<U>) -> <u8 as Pow<PInt<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<PInt<U>> for usize
where U: Unsigned + NonZero,

§

type Output = usize

The result of the exponentiation.
source§

fn powi(self, _: PInt<U>) -> <usize as Pow<PInt<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<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<Ul, Ur> Pow<PInt<Ur>> for PInt<Ul>
where Ul: Unsigned + NonZero + Pow<Ur>, Ur: Unsigned + NonZero, <Ul as Pow<Ur>>::Output: Unsigned + NonZero,

P(Ul)^P(Ur) = P(Ul^Ur)

§

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

The result of the exponentiation.
source§

fn powi(self, _: PInt<Ur>) -> <PInt<Ul> as Pow<PInt<Ur>>>::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 PInt<U>
where U: Unsigned + NonZero,

P^0 = 1

§

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

The result of the exponentiation.
source§

fn powi(self, _: Z0) -> <PInt<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 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<Ul, Ur> Rem<PInt<Ur>> for PInt<Ul>
where Ul: Unsigned + NonZero + Rem<Ur>, Ur: Unsigned + NonZero, PInt<Ul>: PrivateRem<<Ul as Rem<Ur>>::Output, PInt<Ur>>,

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

§

type Output = <PInt<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>) -> <PInt<Ul> as Rem<PInt<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<U> Sub<PInt<U>> for Z0
where U: Unsigned + NonZero,

Z0 - P = N

§

type Output = NInt<U>

The resulting type after applying the - operator.
source§

fn sub(self, _: PInt<U>) -> <Z0 as Sub<PInt<U>>>::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<Ul, Ur> Sub<PInt<Ur>> for PInt<Ul>
where Ul: Unsigned + NonZero + Cmp<Ur> + PrivateIntegerAdd<<Ul as Cmp<Ur>>::Output, Ur>, Ur: Unsigned + NonZero,

P(Ul) - P(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 sub(self, rhs: PInt<Ur>) -> <PInt<Ul> as Sub<PInt<Ur>>>::Output

Performs the - operation. Read more
source§

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

PInt - Z0 = PInt

§

type Output = PInt<U>

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl<U> ToInt<i16> for PInt<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 PInt<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 PInt<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 PInt<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 PInt<U>
where U: Copy + Unsigned + NonZero,

source§

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

source§

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

source§

impl<U> PowerOfTwo for PInt<U>

source§

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

Auto Trait Implementations§

§

impl<U> Freeze for PInt<U>
where U: Freeze,

§

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

§

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

§

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

§

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

§

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

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> AsAny for T
where T: Any,

source§

fn as_any(&self) -> &(dyn Any + 'static)

Borrow this concrete type as a &dyn Any
source§

fn as_mut_any(&mut self) -> &mut (dyn Any + 'static)

Borrow this concrete type as a &mut dyn Any
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where 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<D> OwoColorize for D

source§

fn fg<C>(&self) -> FgColorDisplay<'_, C, Self>
where C: Color,

Set the foreground color generically Read more
source§

fn bg<C>(&self) -> BgColorDisplay<'_, C, Self>
where C: Color,

Set the background color generically. Read more
source§

fn black<'a>(&'a self) -> FgColorDisplay<'a, Black, Self>

Change the foreground color to black
source§

fn on_black<'a>(&'a self) -> BgColorDisplay<'a, Black, Self>

Change the background color to black
source§

fn red<'a>(&'a self) -> FgColorDisplay<'a, Red, Self>

Change the foreground color to red
source§

fn on_red<'a>(&'a self) -> BgColorDisplay<'a, Red, Self>

Change the background color to red
source§

fn green<'a>(&'a self) -> FgColorDisplay<'a, Green, Self>

Change the foreground color to green
source§

fn on_green<'a>(&'a self) -> BgColorDisplay<'a, Green, Self>

Change the background color to green
source§

fn yellow<'a>(&'a self) -> FgColorDisplay<'a, Yellow, Self>

Change the foreground color to yellow
source§

fn on_yellow<'a>(&'a self) -> BgColorDisplay<'a, Yellow, Self>

Change the background color to yellow
source§

fn blue<'a>(&'a self) -> FgColorDisplay<'a, Blue, Self>

Change the foreground color to blue
source§

fn on_blue<'a>(&'a self) -> BgColorDisplay<'a, Blue, Self>

Change the background color to blue
source§

fn magenta<'a>(&'a self) -> FgColorDisplay<'a, Magenta, Self>

Change the foreground color to magenta
source§

fn on_magenta<'a>(&'a self) -> BgColorDisplay<'a, Magenta, Self>

Change the background color to magenta
source§

fn purple<'a>(&'a self) -> FgColorDisplay<'a, Magenta, Self>

Change the foreground color to purple
source§

fn on_purple<'a>(&'a self) -> BgColorDisplay<'a, Magenta, Self>

Change the background color to purple
source§

fn cyan<'a>(&'a self) -> FgColorDisplay<'a, Cyan, Self>

Change the foreground color to cyan
source§

fn on_cyan<'a>(&'a self) -> BgColorDisplay<'a, Cyan, Self>

Change the background color to cyan
source§

fn white<'a>(&'a self) -> FgColorDisplay<'a, White, Self>

Change the foreground color to white
source§

fn on_white<'a>(&'a self) -> BgColorDisplay<'a, White, Self>

Change the background color to white
source§

fn default_color<'a>(&'a self) -> FgColorDisplay<'a, Default, Self>

Change the foreground color to the terminal default
source§

fn on_default_color<'a>(&'a self) -> BgColorDisplay<'a, Default, Self>

Change the background color to the terminal default
source§

fn bright_black<'a>(&'a self) -> FgColorDisplay<'a, BrightBlack, Self>

Change the foreground color to bright black
source§

fn on_bright_black<'a>(&'a self) -> BgColorDisplay<'a, BrightBlack, Self>

Change the background color to bright black
source§

fn bright_red<'a>(&'a self) -> FgColorDisplay<'a, BrightRed, Self>

Change the foreground color to bright red
source§

fn on_bright_red<'a>(&'a self) -> BgColorDisplay<'a, BrightRed, Self>

Change the background color to bright red
source§

fn bright_green<'a>(&'a self) -> FgColorDisplay<'a, BrightGreen, Self>

Change the foreground color to bright green
source§

fn on_bright_green<'a>(&'a self) -> BgColorDisplay<'a, BrightGreen, Self>

Change the background color to bright green
source§

fn bright_yellow<'a>(&'a self) -> FgColorDisplay<'a, BrightYellow, Self>

Change the foreground color to bright yellow
source§

fn on_bright_yellow<'a>(&'a self) -> BgColorDisplay<'a, BrightYellow, Self>

Change the background color to bright yellow
source§

fn bright_blue<'a>(&'a self) -> FgColorDisplay<'a, BrightBlue, Self>

Change the foreground color to bright blue
source§

fn on_bright_blue<'a>(&'a self) -> BgColorDisplay<'a, BrightBlue, Self>

Change the background color to bright blue
source§

fn bright_magenta<'a>(&'a self) -> FgColorDisplay<'a, BrightMagenta, Self>

Change the foreground color to bright magenta
source§

fn on_bright_magenta<'a>(&'a self) -> BgColorDisplay<'a, BrightMagenta, Self>

Change the background color to bright magenta
source§

fn bright_purple<'a>(&'a self) -> FgColorDisplay<'a, BrightMagenta, Self>

Change the foreground color to bright purple
source§

fn on_bright_purple<'a>(&'a self) -> BgColorDisplay<'a, BrightMagenta, Self>

Change the background color to bright purple
source§

fn bright_cyan<'a>(&'a self) -> FgColorDisplay<'a, BrightCyan, Self>

Change the foreground color to bright cyan
source§

fn on_bright_cyan<'a>(&'a self) -> BgColorDisplay<'a, BrightCyan, Self>

Change the background color to bright cyan
source§

fn bright_white<'a>(&'a self) -> FgColorDisplay<'a, BrightWhite, Self>

Change the foreground color to bright white
source§

fn on_bright_white<'a>(&'a self) -> BgColorDisplay<'a, BrightWhite, Self>

Change the background color to bright white
source§

fn bold<'a>(&'a self) -> BoldDisplay<'a, Self>

Make the text bold
source§

fn dimmed<'a>(&'a self) -> DimDisplay<'a, Self>

Make the text dim
source§

fn italic<'a>(&'a self) -> ItalicDisplay<'a, Self>

Make the text italicized
source§

fn underline<'a>(&'a self) -> UnderlineDisplay<'a, Self>

Make the text italicized
Make the text blink
Make the text blink (but fast!)
source§

fn reversed<'a>(&'a self) -> ReversedDisplay<'a, Self>

Swap the foreground and background colors
source§

fn hidden<'a>(&'a self) -> HiddenDisplay<'a, Self>

Hide the text
source§

fn strikethrough<'a>(&'a self) -> StrikeThroughDisplay<'a, Self>

Cross out the text
source§

fn color<Color>(&self, color: Color) -> FgDynColorDisplay<'_, Color, Self>
where Color: DynColor,

Set the foreground color at runtime. Only use if you do not know which color will be used at compile-time. If the color is constant, use either OwoColorize::fg or a color-specific method, such as OwoColorize::green, Read more
source§

fn on_color<Color>(&self, color: Color) -> BgDynColorDisplay<'_, Color, Self>
where Color: DynColor,

Set the background color at runtime. Only use if you do not know what color to use at compile-time. If the color is constant, use either OwoColorize::bg or a color-specific method, such as OwoColorize::on_yellow, Read more
source§

fn fg_rgb<const R: u8, const G: u8, const B: u8>( &self ) -> FgColorDisplay<'_, CustomColor<R, G, B>, Self>

Set the foreground color to a specific RGB value.
source§

fn bg_rgb<const R: u8, const G: u8, const B: u8>( &self ) -> BgColorDisplay<'_, CustomColor<R, G, B>, Self>

Set the background color to a specific RGB value.
source§

fn truecolor(&self, r: u8, g: u8, b: u8) -> FgDynColorDisplay<'_, Rgb, Self>

Sets the foreground color to an RGB value.
source§

fn on_truecolor(&self, r: u8, g: u8, b: u8) -> BgDynColorDisplay<'_, Rgb, Self>

Sets the background color to an RGB value.
source§

fn style(&self, style: Style) -> Styled<&Self>

Apply a runtime-determined style
source§

impl<M, N> PartialDiv<N> for M
where 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
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where 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
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T, Rhs, Output> NumOps<Rhs, Output> for T
where T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,