Skip to main content

Z0

Struct Z0 

Source
pub struct Z0;
Expand description

The type-level signed integer 0.

Implementations§

Source§

impl Z0

Source

pub fn new() -> Z0

Instantiates a singleton representing the integer 0.

Trait Implementations§

Source§

impl Abs for Z0

Source§

type Output = Z0

The absolute value.
Source§

impl<I: Integer> Add<I> for Z0

Z0 + I = I

Source§

type Output = I

The resulting type after applying the + operator.
Source§

fn add(self, rhs: I) -> Self::Output

Performs the + operation. Read more
Source§

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

NInt + Z0 = NInt

Source§

type Output = NInt<U>

The resulting type after applying the + operator.
Source§

fn add(self, _: Z0) -> Self::Output

Performs the + operation. Read more
Source§

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

PInt + Z0 = PInt

Source§

type Output = PInt<U>

The resulting type after applying the + operator.
Source§

fn add(self, _: Z0) -> Self::Output

Performs the + operation. Read more
Source§

impl Binary for Z0

Source§

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

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

impl Clone for Z0

Source§

fn clone(&self) -> Z0

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Cmp for Z0

0 == 0

Source§

type Output = Equal

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

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

0 > -X

Source§

type Output = Greater

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

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

0 < X

Source§

type Output = Less

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

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

-X < 0

Source§

type Output = Less

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

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

X > 0

Source§

type Output = Greater

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

impl Copy for Z0

Source§

impl Debug for Z0

Source§

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

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

impl Default for Z0

Source§

fn default() -> Z0

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

impl<I: Integer + NonZero> Div<I> for Z0

Z0 / I = Z0 where I != 0

Source§

type Output = Z0

The resulting type after applying the / operator.
Source§

fn div(self, _: I) -> Self::Output

Performs the / operation. Read more
Source§

impl Eq for Z0

Source§

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

Source§

type Output = PInt<U>

The greatest common divisor.
Source§

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

Source§

type Output = PInt<U>

The greatest common divisor.
Source§

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

Source§

type Output = PInt<U>

The greatest common divisor.
Source§

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

Source§

type Output = PInt<U>

The greatest common divisor.
Source§

impl Gcd<Z0> for Z0

Source§

type Output = Z0

The greatest common divisor.
Source§

impl Hash for Z0

Source§

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

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 Integer for Z0

Source§

impl Max for Z0

Source§

type Output = Z0

The type of the maximum of Self and Rhs
Source§

fn max(self, _: Z0) -> Self::Output

Method returning the maximum
Source§

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

Source§

type Output = Z0

The type of the maximum of Self and Rhs
Source§

fn max(self, _: NInt<U>) -> Self::Output

Method returning the maximum
Source§

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

Source§

type Output = PInt<U>

The type of the maximum of Self and Rhs
Source§

fn max(self, rhs: PInt<U>) -> Self::Output

Method returning the maximum
Source§

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

Source§

type Output = Z0

The type of the maximum of Self and Rhs
Source§

fn max(self, rhs: Z0) -> Self::Output

Method returning the maximum
Source§

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

Source§

type Output = PInt<U>

The type of the maximum of Self and Rhs
Source§

fn max(self, _: Z0) -> Self::Output

Method returning the maximum
Source§

impl Min for Z0

Source§

type Output = Z0

The type of the minimum of Self and Rhs
Source§

fn min(self, _: Z0) -> Self::Output

Method returning the minimum
Source§

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

Source§

type Output = NInt<U>

The type of the minimum of Self and Rhs
Source§

fn min(self, rhs: NInt<U>) -> Self::Output

Method returning the minimum
Source§

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

Source§

type Output = Z0

The type of the minimum of Self and Rhs
Source§

fn min(self, _: PInt<U>) -> Self::Output

Method returning the minimum
Source§

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

Source§

type Output = NInt<U>

The type of the minimum of Self and Rhs
Source§

fn min(self, _: Z0) -> Self::Output

Method returning the minimum
Source§

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

Source§

type Output = Z0

The type of the minimum of Self and Rhs
Source§

fn min(self, rhs: Z0) -> Self::Output

Method returning the minimum
Source§

impl Mul<ATerm> for Z0

Source§

type Output = ATerm

The resulting type after applying the * operator.
Source§

fn mul(self, _: ATerm) -> Self::Output

Performs the * operation. Read more
Source§

impl<I: Integer> Mul<I> for Z0

Z0 * I = Z0

Source§

type Output = Z0

The resulting type after applying the * operator.
Source§

fn mul(self, _: I) -> Self::Output

Performs the * operation. Read more
Source§

impl<V, A> Mul<TArr<V, A>> for Z0
where Z0: Mul<A>,

Source§

type Output = TArr<Z0, <Z0 as Mul<A>>::Output>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: TArr<V, A>) -> Self::Output

Performs the * operation. Read more
Source§

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

N * Z0 = Z0

Source§

type Output = Z0

The resulting type after applying the * operator.
Source§

fn mul(self, _: Z0) -> Self::Output

Performs the * operation. Read more
Source§

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

P * Z0 = Z0

Source§

type Output = Z0

The resulting type after applying the * operator.
Source§

fn mul(self, _: Z0) -> Self::Output

Performs the * operation. Read more
Source§

impl Neg for Z0

-Z0 = Z0

Source§

type Output = Z0

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
Source§

impl Ord for Z0

Source§

fn cmp(&self, other: &Z0) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

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

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

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

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

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

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

impl PartialEq for Z0

Source§

fn eq(&self, other: &Z0) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Z0

Source§

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

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

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

0^N = 0

Source§

type Output = Z0

The result of the exponentiation.
Source§

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

0^P = 0

Source§

type Output = Z0

The result of the exponentiation.
Source§

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

N^0 = 1

Source§

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

The result of the exponentiation.
Source§

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

P^0 = 1

Source§

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

The result of the exponentiation.
Source§

fn powi(self, _: Z0) -> Self::Output

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

impl Pow<Z0> for Z0

0^0 = 1

Source§

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

The result of the exponentiation.
Source§

fn powi(self, _: Z0) -> Self::Output

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

impl Pow<Z0> for f32

Source§

type Output = f32

The result of the exponentiation.
Source§

fn powi(self, _: Z0) -> Self::Output

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

impl Pow<Z0> for f64

Source§

type Output = f64

The result of the exponentiation.
Source§

fn powi(self, _: Z0) -> Self::Output

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

impl Pow<Z0> for i16

Source§

type Output = i16

The result of the exponentiation.
Source§

fn powi(self, _: Z0) -> Self::Output

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

impl Pow<Z0> for i32

Source§

type Output = i32

The result of the exponentiation.
Source§

fn powi(self, _: Z0) -> Self::Output

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

impl Pow<Z0> for i64

Source§

type Output = i64

The result of the exponentiation.
Source§

fn powi(self, _: Z0) -> Self::Output

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

impl Pow<Z0> for i8

Source§

type Output = i8

The result of the exponentiation.
Source§

fn powi(self, _: Z0) -> Self::Output

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

impl Pow<Z0> for isize

Source§

type Output = isize

The result of the exponentiation.
Source§

fn powi(self, _: Z0) -> Self::Output

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

impl Pow<Z0> for u16

Source§

type Output = u16

The result of the exponentiation.
Source§

fn powi(self, _: Z0) -> Self::Output

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

impl Pow<Z0> for u32

Source§

type Output = u32

The result of the exponentiation.
Source§

fn powi(self, _: Z0) -> Self::Output

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

impl Pow<Z0> for u64

Source§

type Output = u64

The result of the exponentiation.
Source§

fn powi(self, _: Z0) -> Self::Output

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

impl Pow<Z0> for u8

Source§

type Output = u8

The result of the exponentiation.
Source§

fn powi(self, _: Z0) -> Self::Output

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

impl Pow<Z0> for usize

Source§

type Output = usize

The result of the exponentiation.
Source§

fn powi(self, _: Z0) -> Self::Output

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

impl<I: Integer + NonZero> Rem<I> for Z0

Z0 % I = Z0 where I != 0

Source§

type Output = Z0

The resulting type after applying the % operator.
Source§

fn rem(self, _: I) -> Self::Output

Performs the % operation. Read more
Source§

impl StructuralPartialEq for Z0

Source§

impl Sub for Z0

Z0 - Z0 = Z0

Source§

type Output = Z0

The resulting type after applying the - operator.
Source§

fn sub(self, _: Z0) -> Self::Output

Performs the - operation. Read more
Source§

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

Z0 - N = P

Source§

type Output = PInt<U>

The resulting type after applying the - operator.
Source§

fn sub(self, _: NInt<U>) -> Self::Output

Performs the - operation. Read more
Source§

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

Z0 - P = N

Source§

type Output = NInt<U>

The resulting type after applying the - operator.
Source§

fn sub(self, _: PInt<U>) -> Self::Output

Performs the - operation. Read more
Source§

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

NInt - Z0 = NInt

Source§

type Output = NInt<U>

The resulting type after applying the - operator.
Source§

fn sub(self, _: Z0) -> Self::Output

Performs the - operation. Read more
Source§

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

PInt - Z0 = PInt

Source§

type Output = PInt<U>

The resulting type after applying the - operator.
Source§

fn sub(self, _: Z0) -> Self::Output

Performs the - operation. Read more
Source§

impl ToInt<i8> for Z0

Source§

const INT: i8 = Self::I8

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

fn to_int() -> i8

Method returning the concrete value for the type.
Source§

impl ToInt<i16> for Z0

Source§

const INT: i16 = Self::I16

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

fn to_int() -> i16

Method returning the concrete value for the type.
Source§

impl ToInt<i32> for Z0

Source§

const INT: i32 = Self::I32

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

fn to_int() -> i32

Method returning the concrete value for the type.
Source§

impl ToInt<i64> for Z0

Source§

const INT: i64 = Self::I64

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

fn to_int() -> i64

Method returning the concrete value for the type.
Source§

impl ToInt<isize> for Z0

Source§

const INT: isize = Self::ISIZE

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

fn to_int() -> isize

Method returning the concrete value for the type.
Source§

impl Zero for Z0

Auto Trait Implementations§

§

impl Freeze for Z0

§

impl RefUnwindSafe for Z0

§

impl Send for Z0

§

impl Sync for Z0

§

impl Unpin for Z0

§

impl UnsafeUnpin for Z0

§

impl UnwindSafe for Z0

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> 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<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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 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<M, N> PartialDiv<N> for M
where M: Integer + Div<N> + Rem<N, Output = Z0>,

Source§

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

Source§

type Output = T

Should always be Self
Source§

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

Source§

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>,

Source§

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.