Struct crypto_bigint::Wrapping

source ·
pub struct Wrapping<T>(pub T);
Expand description

Provides intentionally-wrapped arithmetic on T.

This is analogous to core::num::Wrapping but allows this crate to define trait impls for this type.

Tuple Fields§

§0: T

Trait Implementations§

source§

impl Add<&Wrapping<Limb>> for &Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &Wrapping<Limb>) -> Wrapping<Limb>

Performs the + operation. Read more
source§

impl Add<&Wrapping<Limb>> for Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &Wrapping<Limb>) -> Wrapping<Limb>

Performs the + operation. Read more
source§

impl<const LIMBS: usize> Add<&Wrapping<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>>

Performs the + operation. Read more
source§

impl<const LIMBS: usize> Add<&Wrapping<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>>

Performs the + operation. Read more
source§

impl Add<Wrapping<Limb>> for &Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Wrapping<Limb>) -> Wrapping<Limb>

Performs the + operation. Read more
source§

impl<const LIMBS: usize> Add<Wrapping<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>>

Performs the + operation. Read more
source§

impl Add for Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Wrapping<Limb>

Performs the + operation. Read more
source§

impl<const LIMBS: usize> Add for Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Wrapping<UInt<LIMBS>>

Performs the + operation. Read more
source§

impl AddAssign<&Wrapping<Limb>> for Wrapping<Limb>

source§

fn add_assign(&mut self, other: &Self)

Performs the += operation. Read more
source§

impl<const LIMBS: usize> AddAssign<&Wrapping<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

source§

fn add_assign(&mut self, other: &Self)

Performs the += operation. Read more
source§

impl AddAssign for Wrapping<Limb>

source§

fn add_assign(&mut self, other: Self)

Performs the += operation. Read more
source§

impl<const LIMBS: usize> AddAssign for Wrapping<UInt<LIMBS>>

source§

fn add_assign(&mut self, other: Self)

Performs the += operation. Read more
source§

impl<T: Binary> Binary for Wrapping<T>

source§

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

Formats the value using the given formatter.
source§

impl<const LIMBS: usize> BitAnd<&Wrapping<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>>

Performs the & operation. Read more
source§

impl<const LIMBS: usize> BitAnd<&Wrapping<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>>

Performs the & operation. Read more
source§

impl<const LIMBS: usize> BitAnd<Wrapping<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>>

Performs the & operation. Read more
source§

impl<const LIMBS: usize> BitAnd for Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Wrapping<UInt<LIMBS>>

Performs the & operation. Read more
source§

impl<const LIMBS: usize> BitAndAssign<&Wrapping<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

source§

fn bitand_assign(&mut self, other: &Self)

Performs the &= operation. Read more
source§

impl<const LIMBS: usize> BitAndAssign for Wrapping<UInt<LIMBS>>

source§

fn bitand_assign(&mut self, other: Self)

Performs the &= operation. Read more
source§

impl<const LIMBS: usize> BitOr<&Wrapping<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>>

Performs the | operation. Read more
source§

impl<const LIMBS: usize> BitOr<&Wrapping<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>>

Performs the | operation. Read more
source§

impl<const LIMBS: usize> BitOr<Wrapping<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>>

Performs the | operation. Read more
source§

impl<const LIMBS: usize> BitOr for Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Wrapping<UInt<LIMBS>>

Performs the | operation. Read more
source§

impl<const LIMBS: usize> BitOrAssign<&Wrapping<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

source§

fn bitor_assign(&mut self, other: &Self)

Performs the |= operation. Read more
source§

impl<const LIMBS: usize> BitOrAssign for Wrapping<UInt<LIMBS>>

source§

fn bitor_assign(&mut self, other: Self)

Performs the |= operation. Read more
source§

impl<const LIMBS: usize> BitXor<&Wrapping<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>>

Performs the ^ operation. Read more
source§

impl<const LIMBS: usize> BitXor<&Wrapping<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>>

Performs the ^ operation. Read more
source§

impl<const LIMBS: usize> BitXor<Wrapping<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>>

Performs the ^ operation. Read more
source§

impl<const LIMBS: usize> BitXor for Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Wrapping<UInt<LIMBS>>

Performs the ^ operation. Read more
source§

impl<const LIMBS: usize> BitXorAssign<&Wrapping<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

source§

fn bitxor_assign(&mut self, other: &Self)

Performs the ^= operation. Read more
source§

impl<const LIMBS: usize> BitXorAssign for Wrapping<UInt<LIMBS>>

source§

fn bitxor_assign(&mut self, other: Self)

Performs the ^= operation. Read more
source§

impl<T: Clone> Clone for Wrapping<T>

source§

fn clone(&self) -> Wrapping<T>

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<T: ConditionallySelectable> ConditionallySelectable for Wrapping<T>

source§

fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self

Select a or b according to choice. Read more
source§

fn conditional_assign(&mut self, other: &Self, choice: Choice)

Conditionally assign other to self, according to choice. Read more
source§

fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)

Conditionally swap self and other if choice == 1; otherwise, reassign both unto themselves. Read more
source§

impl<T: ConstantTimeEq> ConstantTimeEq for Wrapping<T>

source§

fn ct_eq(&self, other: &Self) -> Choice

Determine if two items are equal. Read more
source§

impl<T: Debug> Debug for Wrapping<T>

source§

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

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

impl<T: Default> Default for Wrapping<T>

source§

fn default() -> Wrapping<T>

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

impl<T: Display> Display for Wrapping<T>

source§

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

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

impl<const LIMBS: usize> Div<&NonZero<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &NonZero<UInt<LIMBS>>) -> Self::Output

Performs the / operation. Read more
source§

impl<const LIMBS: usize> Div<&NonZero<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: &NonZero<UInt<LIMBS>>) -> Self::Output

Performs the / operation. Read more
source§

impl<const LIMBS: usize> Div<NonZero<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: NonZero<UInt<LIMBS>>) -> Self::Output

Performs the / operation. Read more
source§

impl<const LIMBS: usize> Div<NonZero<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: NonZero<UInt<LIMBS>>) -> Self::Output

Performs the / operation. Read more
source§

impl<const LIMBS: usize> DivAssign<&NonZero<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

source§

fn div_assign(&mut self, rhs: &NonZero<UInt<LIMBS>>)

Performs the /= operation. Read more
source§

impl<const LIMBS: usize> DivAssign<NonZero<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

source§

fn div_assign(&mut self, rhs: NonZero<UInt<LIMBS>>)

Performs the /= operation. Read more
source§

impl<T: LowerHex> LowerHex for Wrapping<T>

source§

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

Formats the value using the given formatter.
source§

impl Mul<&Wrapping<Limb>> for &Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &Wrapping<Limb>) -> Wrapping<Limb>

Performs the * operation. Read more
source§

impl Mul<&Wrapping<Limb>> for Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &Wrapping<Limb>) -> Wrapping<Limb>

Performs the * operation. Read more
source§

impl<const LIMBS: usize> Mul<&Wrapping<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>>

Performs the * operation. Read more
source§

impl<const LIMBS: usize> Mul<&Wrapping<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>>

Performs the * operation. Read more
source§

impl Mul<Wrapping<Limb>> for &Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Wrapping<Limb>) -> Wrapping<Limb>

Performs the * operation. Read more
source§

impl<const LIMBS: usize> Mul<Wrapping<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>>

Performs the * operation. Read more
source§

impl Mul for Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Wrapping<Limb>

Performs the * operation. Read more
source§

impl<const LIMBS: usize> Mul for Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Wrapping<UInt<LIMBS>>

Performs the * operation. Read more
source§

impl MulAssign<&Wrapping<Limb>> for Wrapping<Limb>

source§

fn mul_assign(&mut self, other: &Self)

Performs the *= operation. Read more
source§

impl<const LIMBS: usize> MulAssign<&Wrapping<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

source§

fn mul_assign(&mut self, other: &Self)

Performs the *= operation. Read more
source§

impl MulAssign for Wrapping<Limb>

source§

fn mul_assign(&mut self, other: Self)

Performs the *= operation. Read more
source§

impl<const LIMBS: usize> MulAssign for Wrapping<UInt<LIMBS>>

source§

fn mul_assign(&mut self, other: Self)

Performs the *= operation. Read more
source§

impl<const LIMBS: usize> Not for Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the ! operator.
source§

fn not(self) -> <Self as Not>::Output

Performs the unary ! operation. Read more
source§

impl<T: Octal> Octal for Wrapping<T>

source§

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

Formats the value using the given formatter.
source§

impl<T: Ord> Ord for Wrapping<T>

source§

fn cmp(&self, other: &Wrapping<T>) -> 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<T: PartialEq> PartialEq for Wrapping<T>

source§

fn eq(&self, other: &Wrapping<T>) -> 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<T: PartialOrd> PartialOrd for Wrapping<T>

source§

fn partial_cmp(&self, other: &Wrapping<T>) -> 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<const LIMBS: usize> Rem<&NonZero<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &NonZero<UInt<LIMBS>>) -> Self::Output

Performs the % operation. Read more
source§

impl<const LIMBS: usize> Rem<&NonZero<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &NonZero<UInt<LIMBS>>) -> Self::Output

Performs the % operation. Read more
source§

impl<const LIMBS: usize> Rem<NonZero<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: NonZero<UInt<LIMBS>>) -> Self::Output

Performs the % operation. Read more
source§

impl<const LIMBS: usize> Rem<NonZero<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: NonZero<UInt<LIMBS>>) -> Self::Output

Performs the % operation. Read more
source§

impl<const LIMBS: usize> RemAssign<&NonZero<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

source§

fn rem_assign(&mut self, rhs: &NonZero<UInt<LIMBS>>)

Performs the %= operation. Read more
source§

impl<const LIMBS: usize> RemAssign<NonZero<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

source§

fn rem_assign(&mut self, rhs: NonZero<UInt<LIMBS>>)

Performs the %= operation. Read more
source§

impl Sub<&Wrapping<Limb>> for &Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &Wrapping<Limb>) -> Wrapping<Limb>

Performs the - operation. Read more
source§

impl Sub<&Wrapping<Limb>> for Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &Wrapping<Limb>) -> Wrapping<Limb>

Performs the - operation. Read more
source§

impl<const LIMBS: usize> Sub<&Wrapping<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>>

Performs the - operation. Read more
source§

impl<const LIMBS: usize> Sub<&Wrapping<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>>

Performs the - operation. Read more
source§

impl Sub<Wrapping<Limb>> for &Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Wrapping<Limb>) -> Wrapping<Limb>

Performs the - operation. Read more
source§

impl<const LIMBS: usize> Sub<Wrapping<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>>

Performs the - operation. Read more
source§

impl Sub for Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Wrapping<Limb>

Performs the - operation. Read more
source§

impl<const LIMBS: usize> Sub for Wrapping<UInt<LIMBS>>

§

type Output = Wrapping<UInt<LIMBS>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Wrapping<UInt<LIMBS>>

Performs the - operation. Read more
source§

impl SubAssign<&Wrapping<Limb>> for Wrapping<Limb>

source§

fn sub_assign(&mut self, other: &Self)

Performs the -= operation. Read more
source§

impl<const LIMBS: usize> SubAssign<&Wrapping<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>>

source§

fn sub_assign(&mut self, other: &Self)

Performs the -= operation. Read more
source§

impl SubAssign for Wrapping<Limb>

source§

fn sub_assign(&mut self, other: Self)

Performs the -= operation. Read more
source§

impl<const LIMBS: usize> SubAssign for Wrapping<UInt<LIMBS>>

source§

fn sub_assign(&mut self, other: Self)

Performs the -= operation. Read more
source§

impl<T: UpperHex> UpperHex for Wrapping<T>

source§

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

Formats the value using the given formatter.
source§

impl<T: Zero> Zero for Wrapping<T>

source§

const ZERO: Self = _

The value 0.
source§

fn is_zero(&self) -> Choice

Determine if this value is equal to zero. Read more
source§

impl<T: Copy> Copy for Wrapping<T>

source§

impl<T: Eq> Eq for Wrapping<T>

source§

impl<T> StructuralPartialEq for Wrapping<T>

Auto Trait Implementations§

§

impl<T> Freeze for Wrapping<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Wrapping<T>
where T: RefUnwindSafe,

§

impl<T> Send for Wrapping<T>
where T: Send,

§

impl<T> Sync for Wrapping<T>
where T: Sync,

§

impl<T> Unpin for Wrapping<T>
where T: Unpin,

§

impl<T> UnwindSafe for Wrapping<T>
where T: 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> 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> 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<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> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. 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.