Struct libipld::cid::multihash::typenum::array::TArr[]

pub struct TArr<V, A> { /* fields omitted */ }
Expand description

TArr is a type that acts as an array of types. It is defined similarly to UInt, only its values can be more than bits, and it is designed to act as an array. So you can only add two if they have the same number of elements, for example.

This array is only really designed to contain Integer types. If you use it with others, you may find it lacking functionality.

Trait Implementations

impl<Al, Vl, Ar, Vr> Add<TArr<Vr, Ar>> for TArr<Vl, Al> where
    Vl: Add<Vr>,
    Al: Add<Ar>, 

type Output = TArr<<Vl as Add<Vr>>::Output, <Al as Add<Ar>>::Output>

The resulting type after applying the + operator.

pub fn add(
    self,
    rhs: TArr<Vr, Ar>
) -> <TArr<Vl, Al> as Add<TArr<Vr, Ar>>>::Output

Performs the + operation. Read more

impl<V, A> Clone for TArr<V, A> where
    A: Clone,
    V: Clone

pub fn clone(&self) -> TArr<V, A>

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<V, A> Debug for TArr<V, A> where
    A: Debug,
    V: Debug

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

Formats the value using the given formatter. Read more

impl<V, A, Rhs> Div<Rhs> for TArr<V, A> where
    A: Div<Rhs>,
    Rhs: Copy,
    V: Div<Rhs>, 

type Output = TArr<<V as Div<Rhs>>::Output, <A as Div<Rhs>>::Output>

The resulting type after applying the / operator.

pub fn div(self, rhs: Rhs) -> <TArr<V, A> as Div<Rhs>>::Output

Performs the / operation. Read more

impl<V, A> Hash for TArr<V, A> where
    A: Hash,
    V: Hash

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

Feeds this value into the given Hasher. Read more

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

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

impl<V, A> Len for TArr<V, A> where
    A: Len,
    <A as Len>::Output: Add<B1>,
    <<A as Len>::Output as Add<B1>>::Output: Unsigned

Size of a TypeArray

type Output = <<A as Len>::Output as Add<B1>>::Output

The length as a type-level unsigned integer.

pub fn len(&self) -> <TArr<V, A> as Len>::Output

This function isn’t used in this crate, but may be useful for others.

impl<V, A, Rhs> Mul<Rhs> for TArr<V, A> where
    A: Mul<Rhs>,
    Rhs: Copy,
    V: Mul<Rhs>, 

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

The resulting type after applying the * operator.

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

Performs the * operation. Read more

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

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

The resulting type after applying the * operator.

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

Performs the * operation. Read more

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

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

The resulting type after applying the * operator.

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

Performs the * operation. Read more

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

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

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl<V, A> Neg for TArr<V, A> where
    A: Neg,
    V: Neg

type Output = TArr<<V as Neg>::Output, <A as Neg>::Output>

The resulting type after applying the - operator.

pub fn neg(self) -> <TArr<V, A> as Neg>::Output

Performs the unary - operation. Read more

impl<V, A> Ord for TArr<V, A> where
    A: Ord,
    V: Ord

pub fn cmp(&self, other: &TArr<V, A>) -> Ordering

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl<V, A, Rhs> PartialDiv<Rhs> for TArr<V, A> where
    A: PartialDiv<Rhs>,
    Rhs: Copy,
    V: PartialDiv<Rhs>, 

type Output = TArr<<V as PartialDiv<Rhs>>::Output, <A as PartialDiv<Rhs>>::Output>

The type of the result of the division

pub fn partial_div(self, rhs: Rhs) -> <TArr<V, A> as PartialDiv<Rhs>>::Output

Method for performing the division

impl<V, A> PartialEq<TArr<V, A>> for TArr<V, A> where
    A: PartialEq<A>,
    V: PartialEq<V>, 

pub fn eq(&self, other: &TArr<V, A>) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

pub fn ne(&self, other: &TArr<V, A>) -> bool

This method tests for !=.

impl<V, A> PartialOrd<TArr<V, A>> for TArr<V, A> where
    A: PartialOrd<A>,
    V: PartialOrd<V>, 

pub fn partial_cmp(&self, other: &TArr<V, A>) -> Option<Ordering>

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

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

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

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

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

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

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

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

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

impl<V, A, Rhs> Rem<Rhs> for TArr<V, A> where
    A: Rem<Rhs>,
    Rhs: Copy,
    V: Rem<Rhs>, 

type Output = TArr<<V as Rem<Rhs>>::Output, <A as Rem<Rhs>>::Output>

The resulting type after applying the % operator.

pub fn rem(self, rhs: Rhs) -> <TArr<V, A> as Rem<Rhs>>::Output

Performs the % operation. Read more

impl<Vl, Al, Vr, Ar> Sub<TArr<Vr, Ar>> for TArr<Vl, Al> where
    Vl: Sub<Vr>,
    Al: Sub<Ar>, 

type Output = TArr<<Vl as Sub<Vr>>::Output, <Al as Sub<Ar>>::Output>

The resulting type after applying the - operator.

pub fn sub(
    self,
    rhs: TArr<Vr, Ar>
) -> <TArr<Vl, Al> as Sub<TArr<Vr, Ar>>>::Output

Performs the - operation. Read more

impl<V, A> Copy for TArr<V, A> where
    A: Copy,
    V: Copy

impl<V, A> Eq for TArr<V, A> where
    A: Eq,
    V: Eq

impl<V, A> StructuralEq for TArr<V, A>

impl<V, A> StructuralPartialEq for TArr<V, A>

impl<V, A> TypeArray for TArr<V, A>

Auto Trait Implementations

impl<V, A> RefUnwindSafe for TArr<V, A> where
    A: RefUnwindSafe,
    V: RefUnwindSafe

impl<V, A> Send for TArr<V, A> where
    A: Send,
    V: Send

impl<V, A> Sync for TArr<V, A> where
    A: Sync,
    V: Sync

impl<V, A> Unpin for TArr<V, A> where
    A: Unpin,
    V: Unpin

impl<V, A> UnwindSafe for TArr<V, A> where
    A: UnwindSafe,
    V: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> References<RawCodec> for T[src]

pub fn references<R, E>(
    _c: RawCodec,
    _r: &mut R,
    _set: &mut E
) -> Result<(), Error> where
    E: Extend<Cid<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>>,
    R: Read
[src]

Scrape the references from an impl Read. Read more

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

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

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.