Struct gstreamer::format::Other

source ·
pub struct Other(/* private fields */);

Implementations§

source§

impl Other

source

pub const MAX: Self = _

source§

impl Other

source

pub const fn from_u64(quantity: u64) -> Self

Builds a new Other value with the provided quantity.

§Panics

Panics if the provided quantity equals u64::MAX, which is reserved for None in C.

source

pub fn from_usize(quantity: usize) -> Self

Builds a new Other value with the provided quantity.

§Panics

Panics if the provided quantity equals u64::MAX, which is reserved for None in C.

source§

impl Other

source

pub const ZERO: Self = _

source

pub const NONE: Option<Self> = None

source

pub const ONE: Self = _

The unitary value.

source

pub const MAX_SIGNED: Signed<Other> = _

source

pub const MIN_SIGNED: Signed<Other> = _

source

pub const fn is_zero(self) -> bool

source§

impl Other

source

pub const fn checked_add(self, rhs: Self) -> Option<Self>

source

pub const fn saturating_add(self, rhs: Self) -> Self

source

pub fn overflowing_add(self, rhs: Self) -> (Self, bool)

source

pub fn wrapping_add(self, rhs: Self) -> Self

source

pub const fn checked_sub(self, rhs: Self) -> Option<Self>

source

pub const fn saturating_sub(self, rhs: Self) -> Self

source

pub const fn overflowing_sub(self, rhs: Self) -> (Self, bool)

source

pub const fn wrapping_sub(self, rhs: Self) -> Self

source

pub fn absdiff(self, rhs: Self) -> Self

source§

impl Other

source

pub const fn checked_div(self, rhs: u64) -> Option<Self>

source

pub const fn saturating_div(self, rhs: u64) -> Self

source

pub const fn checked_mul(self, rhs: u64) -> Option<Self>

source

pub const fn saturating_mul(self, rhs: u64) -> Self

source

pub fn overflowing_mul(self, rhs: u64) -> (Self, bool)

source

pub fn wrapping_mul(self, rhs: u64) -> Self

source

pub const fn checked_rem(self, rhs: u64) -> Option<Self>

Methods from Deref<Target = u64>§

1.43.0 · source

pub const MIN: u64 = 0u64

1.43.0 · source

pub const MAX: u64 = 18_446_744_073_709_551_615u64

1.53.0 · source

pub const BITS: u32 = 64u32

Trait Implementations§

source§

impl Add<Other> for Signed<Other>

§

type Output = Signed<Other>

The resulting type after applying the + operator.
source§

fn add(self, other: Other) -> Self

Performs the + operation. Read more
source§

impl Add<Signed<Other>> for Other

§

type Output = Signed<Other>

The resulting type after applying the + operator.
source§

fn add(self, other: Signed<Other>) -> Signed<Other>

Performs the + operation. Read more
source§

impl Add for Other

§

type Output = Other

The resulting type after applying the + operator.
source§

fn add(self, rhs: Other) -> Self

Performs the + operation. Read more
source§

impl AddAssign<Other> for Signed<Other>

source§

fn add_assign(&mut self, other: Other)

Performs the += operation. Read more
source§

impl AddAssign for Other

source§

fn add_assign(&mut self, rhs: Other)

Performs the += operation. Read more
source§

impl AsRef<u64> for Other

source§

fn as_ref(&self) -> &u64

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for Other

source§

fn clone(&self) -> Other

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 Debug for Other

source§

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

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

impl Default for Other

source§

fn default() -> Other

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

impl Deref for Other

§

type Target = u64

The resulting type after dereferencing.
source§

fn deref(&self) -> &u64

Dereferences the value.
source§

impl<'de> Deserialize<'de> for Other

source§

fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for Other

source§

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

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

impl Displayable for Other

§

type DisplayImpl = Other

source§

fn display(self) -> Self

source§

impl Div<u64> for Other

§

type Output = Other

The resulting type after applying the / operator.
source§

fn div(self, rhs: u64) -> Self

Performs the / operation. Read more
source§

impl Div for Other

§

type Output = u64

The resulting type after applying the / operator.
source§

fn div(self, rhs: Other) -> u64

Performs the / operation. Read more
source§

impl DivAssign<u64> for Other

source§

fn div_assign(&mut self, rhs: u64)

Performs the /= operation. Read more
source§

impl From<Other> for Signed<Other>

source§

fn from(v: Other) -> Signed<Other>

Converts to this type from the input type.
source§

impl From<Other> for u64

source§

fn from(v: Other) -> u64

Converts to this type from the input type.
source§

impl Hash for Other

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 Mul<Other> for u64

§

type Output = Other

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Other) -> Other

Performs the * operation. Read more
source§

impl Mul<u64> for Other

§

type Output = Other

The resulting type after applying the * operator.
source§

fn mul(self, rhs: u64) -> Self

Performs the * operation. Read more
source§

impl MulAssign<u64> for Other

source§

fn mul_assign(&mut self, rhs: u64)

Performs the *= operation. Read more
source§

impl MulDiv<u64> for Other

§

type Output = Other

Output type for the methods of this trait.
source§

fn mul_div_floor(self, num: u64, denom: u64) -> Option<Self>

Calculates floor(val * num / denom), i.e. the largest integer less than or equal to the result of the division. Read more
source§

fn mul_div_round(self, num: u64, denom: u64) -> Option<Self>

Calculates round(val * num / denom), i.e. the closest integer to the result of the division. If both surrounding integers are the same distance (x.5), the one with the bigger absolute value is returned (round away from 0.0). Read more
source§

fn mul_div_ceil(self, num: u64, denom: u64) -> Option<Self>

Calculates ceil(val * num / denom), i.e. the the smallest integer greater than or equal to the result of the division. Read more
source§

impl OptionCheckedAdd<Other> for Signed<Other>

§

type Output = Signed<Other>

The resulting inner type after applying the addition.
source§

fn opt_checked_add(self, rhs: Other) -> Result<Option<Self>, Error>

Computes the checked addition. Read more
source§

impl OptionCheckedAdd<Signed<Other>> for Other

§

type Output = Signed<Other>

The resulting inner type after applying the addition.
source§

fn opt_checked_add( self, rhs: Signed<Other> ) -> Result<Option<Self::Output>, Error>

Computes the checked addition. Read more
source§

impl OptionCheckedAdd for Other

§

type Output = Other

The resulting inner type after applying the addition.
source§

fn opt_checked_add(self, rhs: Self) -> Result<Option<Self>, Error>

Computes the checked addition. Read more
source§

impl OptionCheckedDiv<u64> for Other

§

type Output = Other

The resulting inner type after applying the division.
source§

fn opt_checked_div(self, rhs: u64) -> Result<Option<Self>, Error>

Computes the checked division. Read more
source§

impl OptionCheckedDiv for Other

§

type Output = u64

The resulting inner type after applying the division.
source§

fn opt_checked_div(self, rhs: Self) -> Result<Option<u64>, Error>

Computes the checked division. Read more
source§

impl OptionCheckedMul<Other> for u64

§

type Output = Other

The resulting inner type after applying the multiplication.
source§

fn opt_checked_mul(self, rhs: Other) -> Result<Option<Other>, Error>

Computes the checked multiplication. Read more
source§

impl OptionCheckedMul<u64> for Other

§

type Output = Other

The resulting inner type after applying the multiplication.
source§

fn opt_checked_mul(self, rhs: u64) -> Result<Option<Self>, Error>

Computes the checked multiplication. Read more
source§

impl OptionCheckedRem<u64> for Other

§

type Output = Other

The resulting inner type after applying the remainder.
source§

fn opt_checked_rem(self, rhs: u64) -> Result<Option<Self>, Error>

Computes the checked remainder. Read more
source§

impl OptionCheckedRem for Other

§

type Output = Other

The resulting inner type after applying the remainder.
source§

fn opt_checked_rem(self, rhs: Self) -> Result<Option<Self>, Error>

Computes the checked remainder. Read more
source§

impl OptionCheckedSub<Other> for Signed<Other>

§

type Output = Signed<Other>

The resulting inner type after applying the substraction.
source§

fn opt_checked_sub(self, rhs: Other) -> Result<Option<Self>, Error>

Computes the checked substraction. Read more
source§

impl OptionCheckedSub<Signed<Other>> for Other

§

type Output = Signed<Other>

The resulting inner type after applying the substraction.
source§

fn opt_checked_sub( self, rhs: Signed<Other> ) -> Result<Option<Self::Output>, Error>

Computes the checked substraction. Read more
source§

impl OptionCheckedSub for Other

§

type Output = Other

The resulting inner type after applying the substraction.
source§

fn opt_checked_sub(self, rhs: Self) -> Result<Option<Self>, Error>

Computes the checked substraction. Read more
source§

impl OptionOverflowingAdd for Other

§

type Output = Other

The resulting inner type after applying the addition.
source§

fn opt_overflowing_add(self, rhs: Self) -> Option<(Self, bool)>

Returns a tuple of the addition along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then self is returned. Read more
source§

impl OptionOverflowingMul<Other> for u64

§

type Output = Other

The resulting inner type after applying the multiplication.
source§

fn opt_overflowing_mul(self, rhs: Other) -> Option<(Other, bool)>

Returns a tuple of the multiplication along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then self is returned. Read more
source§

impl OptionOverflowingMul<u64> for Other

§

type Output = Other

The resulting inner type after applying the multiplication.
source§

fn opt_overflowing_mul(self, rhs: u64) -> Option<(Self, bool)>

Returns a tuple of the multiplication along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then self is returned. Read more
source§

impl OptionOverflowingSub for Other

§

type Output = Other

The resulting inner type after applying the substraction.
source§

fn opt_overflowing_sub(self, rhs: Self) -> Option<(Self, bool)>

Returns a tuple of the substraction along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then self is returned. Read more
source§

impl OptionSaturatingAdd<Other> for Signed<Other>

§

type Output = Signed<Other>

The resulting inner type after applying the addition.
source§

fn opt_saturating_add(self, rhs: Other) -> Option<Self>

Computes the addition saturating at the numeric bounds instead of overflowing. Read more
source§

impl OptionSaturatingAdd<Signed<Other>> for Other

§

type Output = Signed<Other>

The resulting inner type after applying the addition.
source§

fn opt_saturating_add(self, rhs: Signed<Other>) -> Option<Self::Output>

Computes the addition saturating at the numeric bounds instead of overflowing. Read more
source§

impl OptionSaturatingAdd for Other

§

type Output = Other

The resulting inner type after applying the addition.
source§

fn opt_saturating_add(self, rhs: Self) -> Option<Self>

Computes the addition saturating at the numeric bounds instead of overflowing. Read more
source§

impl OptionSaturatingMul<Other> for u64

§

type Output = Other

The resulting inner type after applying the multiplication.
source§

fn opt_saturating_mul(self, rhs: Other) -> Option<Other>

Computes the multiplication saturating at the numeric bounds instead of overflowing. Read more
source§

impl OptionSaturatingMul<u64> for Other

§

type Output = Other

The resulting inner type after applying the multiplication.
source§

fn opt_saturating_mul(self, rhs: u64) -> Option<Self>

Computes the multiplication saturating at the numeric bounds instead of overflowing. Read more
source§

impl OptionSaturatingSub<Other> for Signed<Other>

§

type Output = Signed<Other>

The resulting inner type after applying the substraction.
source§

fn opt_saturating_sub(self, rhs: Other) -> Option<Self>

Computes the substraction saturating at the numeric bounds instead of overflowing. Read more
source§

impl OptionSaturatingSub<Signed<Other>> for Other

§

type Output = Signed<Other>

The resulting inner type after applying the substraction.
source§

fn opt_saturating_sub(self, rhs: Signed<Other>) -> Option<Self::Output>

Computes the substraction saturating at the numeric bounds instead of overflowing. Read more
source§

impl OptionSaturatingSub for Other

§

type Output = Other

The resulting inner type after applying the substraction.
source§

fn opt_saturating_sub(self, rhs: Self) -> Option<Self>

Computes the substraction saturating at the numeric bounds instead of overflowing. Read more
source§

impl OptionWrappingAdd for Other

§

type Output = Other

The resulting inner type after applying the addition.
source§

fn opt_wrapping_add(self, rhs: Self) -> Option<Self>

Computes the addition wrapping at the numeric bounds instead of overflowing. Read more
source§

impl OptionWrappingMul<Other> for u64

§

type Output = Other

The resulting inner type after applying the multiplication.
source§

fn opt_wrapping_mul(self, rhs: Other) -> Option<Other>

Computes the multiplication wrapping at the numeric bounds instead of overflowing. Read more
source§

impl OptionWrappingMul<u64> for Other

§

type Output = Other

The resulting inner type after applying the multiplication.
source§

fn opt_wrapping_mul(self, rhs: u64) -> Option<Self>

Computes the multiplication wrapping at the numeric bounds instead of overflowing. Read more
source§

impl OptionWrappingSub for Other

§

type Output = Other

The resulting inner type after applying the substraction.
source§

fn opt_wrapping_sub(self, rhs: Self) -> Option<Self>

Computes the substraction wrapping at the numeric bounds instead of overflowing. Read more
source§

impl Ord for Other

source§

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

source§

fn eq(&self, other: &Other) -> 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 PartialEq<Signed<Other>> for Other

source§

fn eq(&self, other: &Signed<Other>) -> 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 PartialEq for Other

source§

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

source§

fn partial_cmp(&self, other: &Other) -> 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 PartialOrd<Signed<Other>> for Other

source§

fn partial_cmp(&self, other: &Signed<Other>) -> 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 PartialOrd for Other

source§

fn partial_cmp(&self, other: &Other) -> 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 Rem<u64> for Other

§

type Output = Other

The resulting type after applying the % operator.
source§

fn rem(self, rhs: u64) -> Self

Performs the % operation. Read more
source§

impl Rem for Other

§

type Output = Other

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl RemAssign<u64> for Other

source§

fn rem_assign(&mut self, rhs: u64)

Performs the %= operation. Read more
source§

impl Serialize for Other

source§

fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more
source§

impl Sub<Other> for Signed<Other>

§

type Output = Signed<Other>

The resulting type after applying the - operator.
source§

fn sub(self, other: Other) -> Self

Performs the - operation. Read more
source§

impl Sub<Signed<Other>> for Other

§

type Output = Signed<Other>

The resulting type after applying the - operator.
source§

fn sub(self, other: Signed<Other>) -> Signed<Other>

Performs the - operation. Read more
source§

impl Sub for Other

§

type Output = Other

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Other) -> Self

Performs the - operation. Read more
source§

impl SubAssign<Other> for Signed<Other>

source§

fn sub_assign(&mut self, other: Other)

Performs the -= operation. Read more
source§

impl SubAssign for Other

source§

fn sub_assign(&mut self, rhs: Other)

Performs the -= operation. Read more
source§

impl TryFrom<Other> for usize

§

type Error = TryFromIntError

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

fn try_from(value: Other) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<u64> for Other

§

type Error = GlibNoneError

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

fn try_from(val: u64) -> Result<Self, GlibNoneError>

Performs the conversion.
source§

impl TryFromGlib<i64> for Other

source§

impl UnsignedIntoSigned for Other

§

type Signed = Signed<Other>

source§

fn into_positive(self) -> Self::Signed

Converts self into a Signed::Positive.
source§

fn into_negative(self) -> Self::Signed

Converts self into a Signed::Negative.
source§

fn into_signed(self, sign: i32) -> Self::Signed

Converts self into a Signed matching the given sign.
source§

impl Copy for Other

source§

impl Eq for Other

source§

impl OptionOperations for Other

source§

impl SignedIntrinsic for Other

source§

impl StructuralPartialEq for Other

Auto Trait Implementations§

§

impl RefUnwindSafe for Other

§

impl Send for Other

§

impl Sync for Other

§

impl Unpin for Other

§

impl UnwindSafe for Other

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.

§

impl<T, InnerRhs> OptionAdd<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionAdd<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionAdd<InnerRhs>>::Output

The resulting inner type after applying the addition.
§

fn opt_add( self, rhs: &Option<InnerRhs> ) -> Option<<T as OptionAdd<&Option<InnerRhs>, InnerRhs>>::Output>

Computes the addition. Read more
§

impl<T, InnerRhs> OptionAdd<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionAdd<InnerRhs>,

§

type Output = <T as OptionAdd<InnerRhs>>::Output

The resulting inner type after applying the addition.
§

fn opt_add( self, rhs: Option<InnerRhs> ) -> Option<<T as OptionAdd<Option<InnerRhs>, InnerRhs>>::Output>

Computes the addition. Read more
§

impl<T, Rhs> OptionAdd<Rhs> for T
where T: OptionOperations + Add<Rhs>,

§

type Output = <T as Add<Rhs>>::Output

The resulting inner type after applying the addition.
§

fn opt_add(self, rhs: Rhs) -> Option<<T as OptionAdd<Rhs>>::Output>

Computes the addition. Read more
§

impl<T, InnerRhs> OptionAddAssign<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionAddAssign<InnerRhs>, InnerRhs: Copy,

§

fn opt_add_assign(&mut self, rhs: &Option<InnerRhs>)

Performs the addition assignment. Read more
§

impl<T, InnerRhs> OptionAddAssign<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionAddAssign<InnerRhs>,

§

fn opt_add_assign(&mut self, rhs: Option<InnerRhs>)

Performs the addition assignment. Read more
§

impl<T, Rhs> OptionAddAssign<Rhs> for T
where T: OptionOperations + AddAssign<Rhs>,

§

fn opt_add_assign(&mut self, rhs: Rhs)

Performs the addition assignment. Read more
§

impl<T, InnerRhs> OptionCheckedAdd<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionCheckedAdd<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionCheckedAdd<InnerRhs>>::Output

The resulting inner type after applying the addition.
§

fn opt_checked_add( self, rhs: &Option<InnerRhs> ) -> Result<Option<<T as OptionCheckedAdd<&Option<InnerRhs>, InnerRhs>>::Output>, Error>

Computes the checked addition. Read more
§

impl<T, InnerRhs> OptionCheckedAdd<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionCheckedAdd<InnerRhs>,

§

type Output = <T as OptionCheckedAdd<InnerRhs>>::Output

The resulting inner type after applying the addition.
§

fn opt_checked_add( self, rhs: Option<InnerRhs> ) -> Result<Option<<T as OptionCheckedAdd<Option<InnerRhs>, InnerRhs>>::Output>, Error>

Computes the checked addition. Read more
§

impl<T, InnerRhs> OptionCheckedDiv<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionCheckedDiv<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionCheckedDiv<InnerRhs>>::Output

The resulting inner type after applying the division.
§

fn opt_checked_div( self, rhs: &Option<InnerRhs> ) -> Result<Option<<T as OptionCheckedDiv<&Option<InnerRhs>, InnerRhs>>::Output>, Error>

Computes the checked division. Read more
§

impl<T, InnerRhs> OptionCheckedDiv<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionCheckedDiv<InnerRhs>,

§

type Output = <T as OptionCheckedDiv<InnerRhs>>::Output

The resulting inner type after applying the division.
§

fn opt_checked_div( self, rhs: Option<InnerRhs> ) -> Result<Option<<T as OptionCheckedDiv<Option<InnerRhs>, InnerRhs>>::Output>, Error>

Computes the checked division. Read more
§

impl<T, InnerRhs> OptionCheckedMul<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionCheckedMul<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionCheckedMul<InnerRhs>>::Output

The resulting inner type after applying the multiplication.
§

fn opt_checked_mul( self, rhs: &Option<InnerRhs> ) -> Result<Option<<T as OptionCheckedMul<&Option<InnerRhs>, InnerRhs>>::Output>, Error>

Computes the checked multiplication. Read more
§

impl<T, InnerRhs> OptionCheckedMul<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionCheckedMul<InnerRhs>,

§

type Output = <T as OptionCheckedMul<InnerRhs>>::Output

The resulting inner type after applying the multiplication.
§

fn opt_checked_mul( self, rhs: Option<InnerRhs> ) -> Result<Option<<T as OptionCheckedMul<Option<InnerRhs>, InnerRhs>>::Output>, Error>

Computes the checked multiplication. Read more
§

impl<T, InnerRhs> OptionCheckedRem<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionCheckedRem<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionCheckedRem<InnerRhs>>::Output

The resulting inner type after applying the remainder.
§

fn opt_checked_rem( self, rhs: &Option<InnerRhs> ) -> Result<Option<<T as OptionCheckedRem<&Option<InnerRhs>, InnerRhs>>::Output>, Error>

Computes the checked remainder. Read more
§

impl<T, InnerRhs> OptionCheckedRem<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionCheckedRem<InnerRhs>,

§

type Output = <T as OptionCheckedRem<InnerRhs>>::Output

The resulting inner type after applying the remainder.
§

fn opt_checked_rem( self, rhs: Option<InnerRhs> ) -> Result<Option<<T as OptionCheckedRem<Option<InnerRhs>, InnerRhs>>::Output>, Error>

Computes the checked remainder. Read more
§

impl<T, InnerRhs> OptionCheckedSub<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionCheckedSub<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionCheckedSub<InnerRhs>>::Output

The resulting inner type after applying the substraction.
§

fn opt_checked_sub( self, rhs: &Option<InnerRhs> ) -> Result<Option<<T as OptionCheckedSub<&Option<InnerRhs>, InnerRhs>>::Output>, Error>

Computes the checked substraction. Read more
§

impl<T, InnerRhs> OptionCheckedSub<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionCheckedSub<InnerRhs>,

§

type Output = <T as OptionCheckedSub<InnerRhs>>::Output

The resulting inner type after applying the substraction.
§

fn opt_checked_sub( self, rhs: Option<InnerRhs> ) -> Result<Option<<T as OptionCheckedSub<Option<InnerRhs>, InnerRhs>>::Output>, Error>

Computes the checked substraction. Read more
§

impl<T, InnerRhs> OptionDiv<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionDiv<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionDiv<InnerRhs>>::Output

The resulting inner type after applying the division.
§

fn opt_div( self, rhs: &Option<InnerRhs> ) -> Option<<T as OptionDiv<&Option<InnerRhs>, InnerRhs>>::Output>

Computes the division. Read more
§

impl<T, InnerRhs> OptionDiv<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionDiv<InnerRhs>,

§

type Output = <T as OptionDiv<InnerRhs>>::Output

The resulting inner type after applying the division.
§

fn opt_div( self, rhs: Option<InnerRhs> ) -> Option<<T as OptionDiv<Option<InnerRhs>, InnerRhs>>::Output>

Computes the division. Read more
§

impl<T, Rhs> OptionDiv<Rhs> for T
where T: OptionOperations + Div<Rhs>,

§

type Output = <T as Div<Rhs>>::Output

The resulting inner type after applying the division.
§

fn opt_div(self, rhs: Rhs) -> Option<<T as OptionDiv<Rhs>>::Output>

Computes the division. Read more
§

impl<T, InnerRhs> OptionDivAssign<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionDivAssign<InnerRhs>, InnerRhs: Copy,

§

fn opt_div_assign(&mut self, rhs: &Option<InnerRhs>)

Performs the division assignment. Read more
§

impl<T, InnerRhs> OptionDivAssign<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionDivAssign<InnerRhs>,

§

fn opt_div_assign(&mut self, rhs: Option<InnerRhs>)

Performs the division assignment. Read more
§

impl<T, Rhs> OptionDivAssign<Rhs> for T
where T: OptionOperations + DivAssign<Rhs>,

§

fn opt_div_assign(&mut self, rhs: Rhs)

Performs the division assignment. Read more
§

impl<T, InnerRhs> OptionEq<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + for<'a> OptionEq<&'a InnerRhs, InnerRhs>,

§

fn opt_eq(&self, rhs: &Option<InnerRhs>) -> Option<bool>

Tests whether self is equal to other. Read more
§

fn opt_ne(&self, other: Rhs) -> Option<bool>

Tests whether self is not equal to other. Read more
§

impl<T, Rhs> OptionEq<&Rhs, Rhs> for T
where T: OptionOperations + PartialEq<Rhs>,

§

fn opt_eq(&self, rhs: &Rhs) -> Option<bool>

Tests whether self is equal to other. Read more
§

fn opt_ne(&self, other: Rhs) -> Option<bool>

Tests whether self is not equal to other. Read more
§

impl<T, InnerRhs> OptionEq<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + for<'a> OptionEq<&'a InnerRhs, InnerRhs>,

§

fn opt_eq(&self, rhs: Option<InnerRhs>) -> Option<bool>

Tests whether self is equal to other. Read more
§

fn opt_ne(&self, other: Rhs) -> Option<bool>

Tests whether self is not equal to other. Read more
§

impl<T, Rhs> OptionEq<Rhs> for T
where T: OptionOperations + for<'a> OptionEq<&'a Rhs, Rhs>,

§

fn opt_eq(&self, rhs: Rhs) -> Option<bool>

Tests whether self is equal to other. Read more
§

fn opt_ne(&self, other: Rhs) -> Option<bool>

Tests whether self is not equal to other. Read more
§

impl<T> OptionMinMax<Option<T>, T> for T
where T: for<'a> OptionOrd<&'a T, T>,

§

fn opt_min(self, other: Option<T>) -> Option<T>

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

fn opt_max(self, other: Option<T>) -> Option<T>

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

impl<T> OptionMinMax<T> for T
where T: for<'a> OptionOrd<&'a T, T>,

§

fn opt_min(self, other: T) -> Option<T>

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

fn opt_max(self, other: T) -> Option<T>

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

impl<T, InnerRhs> OptionMul<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionMul<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionMul<InnerRhs>>::Output

The resulting inner type after applying the multiplication.
§

fn opt_mul( self, rhs: &Option<InnerRhs> ) -> Option<<T as OptionMul<&Option<InnerRhs>, InnerRhs>>::Output>

Computes the multiplication. Read more
§

impl<T, InnerRhs> OptionMul<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionMul<InnerRhs>,

§

type Output = <T as OptionMul<InnerRhs>>::Output

The resulting inner type after applying the multiplication.
§

fn opt_mul( self, rhs: Option<InnerRhs> ) -> Option<<T as OptionMul<Option<InnerRhs>, InnerRhs>>::Output>

Computes the multiplication. Read more
§

impl<T, Rhs> OptionMul<Rhs> for T
where T: OptionOperations + Mul<Rhs>,

§

type Output = <T as Mul<Rhs>>::Output

The resulting inner type after applying the multiplication.
§

fn opt_mul(self, rhs: Rhs) -> Option<<T as OptionMul<Rhs>>::Output>

Computes the multiplication. Read more
§

impl<T, InnerRhs> OptionMulAssign<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionMulAssign<InnerRhs>, InnerRhs: Copy,

§

fn opt_mul_assign(&mut self, rhs: &Option<InnerRhs>)

Performs the multiplication assignment. Read more
§

impl<T, InnerRhs> OptionMulAssign<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionMulAssign<InnerRhs>,

§

fn opt_mul_assign(&mut self, rhs: Option<InnerRhs>)

Performs the multiplication assignment. Read more
§

impl<T, Rhs> OptionMulAssign<Rhs> for T
where T: OptionOperations + MulAssign<Rhs>,

§

fn opt_mul_assign(&mut self, rhs: Rhs)

Performs the multiplication assignment. Read more
§

impl<T, InnerRhs> OptionOrd<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + for<'a> OptionOrd<&'a InnerRhs, InnerRhs>,

§

fn opt_cmp(&self, rhs: &Option<InnerRhs>) -> Option<Ordering>

Returns an ordering between self and rhs values if one exists. Read more
§

fn opt_lt(&self, rhs: Rhs) -> Option<bool>

Tests whether self is less than rhs. Read more
§

fn opt_le(&self, rhs: Rhs) -> Option<bool>

Tests whether self is less or equal to rhs. Read more
§

fn opt_gt(&self, rhs: Rhs) -> Option<bool>

Tests whether self is greater than rhs. Read more
§

fn opt_ge(&self, rhs: Rhs) -> Option<bool>

Tests whether self is greater or equal to rhs. Read more
§

impl<T, Rhs> OptionOrd<&Rhs, Rhs> for T
where T: OptionOperations + PartialOrd<Rhs>,

§

fn opt_cmp(&self, rhs: &Rhs) -> Option<Ordering>

Returns an ordering between self and rhs values if one exists. Read more
§

fn opt_lt(&self, rhs: Rhs) -> Option<bool>

Tests whether self is less than rhs. Read more
§

fn opt_le(&self, rhs: Rhs) -> Option<bool>

Tests whether self is less or equal to rhs. Read more
§

fn opt_gt(&self, rhs: Rhs) -> Option<bool>

Tests whether self is greater than rhs. Read more
§

fn opt_ge(&self, rhs: Rhs) -> Option<bool>

Tests whether self is greater or equal to rhs. Read more
§

impl<T, InnerRhs> OptionOrd<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + for<'a> OptionOrd<&'a InnerRhs, InnerRhs>,

§

fn opt_cmp(&self, rhs: Option<InnerRhs>) -> Option<Ordering>

Returns an ordering between self and rhs values if one exists. Read more
§

fn opt_lt(&self, rhs: Rhs) -> Option<bool>

Tests whether self is less than rhs. Read more
§

fn opt_le(&self, rhs: Rhs) -> Option<bool>

Tests whether self is less or equal to rhs. Read more
§

fn opt_gt(&self, rhs: Rhs) -> Option<bool>

Tests whether self is greater than rhs. Read more
§

fn opt_ge(&self, rhs: Rhs) -> Option<bool>

Tests whether self is greater or equal to rhs. Read more
§

impl<T, Rhs> OptionOrd<Rhs> for T
where T: OptionOperations + for<'a> OptionOrd<&'a Rhs, Rhs>,

§

fn opt_cmp(&self, rhs: Rhs) -> Option<Ordering>

Returns an ordering between self and rhs values if one exists. Read more
§

fn opt_lt(&self, rhs: Rhs) -> Option<bool>

Tests whether self is less than rhs. Read more
§

fn opt_le(&self, rhs: Rhs) -> Option<bool>

Tests whether self is less or equal to rhs. Read more
§

fn opt_gt(&self, rhs: Rhs) -> Option<bool>

Tests whether self is greater than rhs. Read more
§

fn opt_ge(&self, rhs: Rhs) -> Option<bool>

Tests whether self is greater or equal to rhs. Read more
§

impl<T, InnerRhs> OptionOverflowingAdd<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionOverflowingAdd<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionOverflowingAdd<InnerRhs>>::Output

The resulting inner type after applying the addition.
§

fn opt_overflowing_add( self, rhs: &Option<InnerRhs> ) -> Option<(<T as OptionOverflowingAdd<&Option<InnerRhs>, InnerRhs>>::Output, bool)>

Returns a tuple of the addition along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then self is returned. Read more
§

impl<T, InnerRhs> OptionOverflowingAdd<Option<InnerRhs>, InnerRhs> for T

§

type Output = <T as OptionOverflowingAdd<InnerRhs>>::Output

The resulting inner type after applying the addition.
§

fn opt_overflowing_add( self, rhs: Option<InnerRhs> ) -> Option<(<T as OptionOverflowingAdd<Option<InnerRhs>, InnerRhs>>::Output, bool)>

Returns a tuple of the addition along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then self is returned. Read more
§

impl<T, InnerRhs> OptionOverflowingMul<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionOverflowingMul<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionOverflowingMul<InnerRhs>>::Output

The resulting inner type after applying the multiplication.
§

fn opt_overflowing_mul( self, rhs: &Option<InnerRhs> ) -> Option<(<T as OptionOverflowingMul<&Option<InnerRhs>, InnerRhs>>::Output, bool)>

Returns a tuple of the multiplication along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then self is returned. Read more
§

impl<T, InnerRhs> OptionOverflowingMul<Option<InnerRhs>, InnerRhs> for T

§

type Output = <T as OptionOverflowingMul<InnerRhs>>::Output

The resulting inner type after applying the multiplication.
§

fn opt_overflowing_mul( self, rhs: Option<InnerRhs> ) -> Option<(<T as OptionOverflowingMul<Option<InnerRhs>, InnerRhs>>::Output, bool)>

Returns a tuple of the multiplication along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then self is returned. Read more
§

impl<T, InnerRhs> OptionOverflowingSub<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionOverflowingSub<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionOverflowingSub<InnerRhs>>::Output

The resulting inner type after applying the substraction.
§

fn opt_overflowing_sub( self, rhs: &Option<InnerRhs> ) -> Option<(<T as OptionOverflowingSub<&Option<InnerRhs>, InnerRhs>>::Output, bool)>

Returns a tuple of the substraction along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then self is returned. Read more
§

impl<T, InnerRhs> OptionOverflowingSub<Option<InnerRhs>, InnerRhs> for T

§

type Output = <T as OptionOverflowingSub<InnerRhs>>::Output

The resulting inner type after applying the substraction.
§

fn opt_overflowing_sub( self, rhs: Option<InnerRhs> ) -> Option<(<T as OptionOverflowingSub<Option<InnerRhs>, InnerRhs>>::Output, bool)>

Returns a tuple of the substraction along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then self is returned. Read more
§

impl<T, InnerRhs> OptionRem<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionRem<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionRem<InnerRhs>>::Output

The resulting inner type after applying the remainder.
§

fn opt_rem( self, rhs: &Option<InnerRhs> ) -> Option<<T as OptionRem<&Option<InnerRhs>, InnerRhs>>::Output>

Computes the remainder. Read more
§

impl<T, InnerRhs> OptionRem<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionRem<InnerRhs>,

§

type Output = <T as OptionRem<InnerRhs>>::Output

The resulting inner type after applying the remainder.
§

fn opt_rem( self, rhs: Option<InnerRhs> ) -> Option<<T as OptionRem<Option<InnerRhs>, InnerRhs>>::Output>

Computes the remainder. Read more
§

impl<T, Rhs> OptionRem<Rhs> for T
where T: OptionOperations + Rem<Rhs>,

§

type Output = <T as Rem<Rhs>>::Output

The resulting inner type after applying the remainder.
§

fn opt_rem(self, rhs: Rhs) -> Option<<T as OptionRem<Rhs>>::Output>

Computes the remainder. Read more
§

impl<T, InnerRhs> OptionRemAssign<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionRemAssign<InnerRhs>, InnerRhs: Copy,

§

fn opt_rem_assign(&mut self, rhs: &Option<InnerRhs>)

Performs the remainder assignment. Read more
§

impl<T, InnerRhs> OptionRemAssign<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionRemAssign<InnerRhs>,

§

fn opt_rem_assign(&mut self, rhs: Option<InnerRhs>)

Performs the remainder assignment. Read more
§

impl<T, Rhs> OptionRemAssign<Rhs> for T
where T: OptionOperations + RemAssign<Rhs>,

§

fn opt_rem_assign(&mut self, rhs: Rhs)

Performs the remainder assignment. Read more
§

impl<T, InnerRhs> OptionSaturatingAdd<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionSaturatingAdd<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionSaturatingAdd<InnerRhs>>::Output

The resulting inner type after applying the addition.
§

fn opt_saturating_add( self, rhs: &Option<InnerRhs> ) -> Option<<T as OptionSaturatingAdd<&Option<InnerRhs>, InnerRhs>>::Output>

Computes the addition saturating at the numeric bounds instead of overflowing. Read more
§

impl<T, InnerRhs> OptionSaturatingAdd<Option<InnerRhs>, InnerRhs> for T

§

type Output = <T as OptionSaturatingAdd<InnerRhs>>::Output

The resulting inner type after applying the addition.
§

fn opt_saturating_add( self, rhs: Option<InnerRhs> ) -> Option<<T as OptionSaturatingAdd<Option<InnerRhs>, InnerRhs>>::Output>

Computes the addition saturating at the numeric bounds instead of overflowing. Read more
§

impl<T, InnerRhs> OptionSaturatingMul<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionSaturatingMul<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionSaturatingMul<InnerRhs>>::Output

The resulting inner type after applying the multiplication.
§

fn opt_saturating_mul( self, rhs: &Option<InnerRhs> ) -> Option<<T as OptionSaturatingMul<&Option<InnerRhs>, InnerRhs>>::Output>

Computes the multiplication saturating at the numeric bounds instead of overflowing. Read more
§

impl<T, InnerRhs> OptionSaturatingMul<Option<InnerRhs>, InnerRhs> for T

§

type Output = <T as OptionSaturatingMul<InnerRhs>>::Output

The resulting inner type after applying the multiplication.
§

fn opt_saturating_mul( self, rhs: Option<InnerRhs> ) -> Option<<T as OptionSaturatingMul<Option<InnerRhs>, InnerRhs>>::Output>

Computes the multiplication saturating at the numeric bounds instead of overflowing. Read more
§

impl<T, InnerRhs> OptionSaturatingSub<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionSaturatingSub<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionSaturatingSub<InnerRhs>>::Output

The resulting inner type after applying the substraction.
§

fn opt_saturating_sub( self, rhs: &Option<InnerRhs> ) -> Option<<T as OptionSaturatingSub<&Option<InnerRhs>, InnerRhs>>::Output>

Computes the substraction saturating at the numeric bounds instead of overflowing. Read more
§

impl<T, InnerRhs> OptionSaturatingSub<Option<InnerRhs>, InnerRhs> for T

§

type Output = <T as OptionSaturatingSub<InnerRhs>>::Output

The resulting inner type after applying the substraction.
§

fn opt_saturating_sub( self, rhs: Option<InnerRhs> ) -> Option<<T as OptionSaturatingSub<Option<InnerRhs>, InnerRhs>>::Output>

Computes the substraction saturating at the numeric bounds instead of overflowing. Read more
§

impl<T, InnerRhs> OptionSub<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionSub<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionSub<InnerRhs>>::Output

The resulting inner type after applying the substraction.
§

fn opt_sub( self, rhs: &Option<InnerRhs> ) -> Option<<T as OptionSub<&Option<InnerRhs>, InnerRhs>>::Output>

Computes the substraction. Read more
§

impl<T, InnerRhs> OptionSub<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionSub<InnerRhs>,

§

type Output = <T as OptionSub<InnerRhs>>::Output

The resulting inner type after applying the substraction.
§

fn opt_sub( self, rhs: Option<InnerRhs> ) -> Option<<T as OptionSub<Option<InnerRhs>, InnerRhs>>::Output>

Computes the substraction. Read more
§

impl<T, Rhs> OptionSub<Rhs> for T
where T: OptionOperations + Sub<Rhs>,

§

type Output = <T as Sub<Rhs>>::Output

The resulting inner type after applying the substraction.
§

fn opt_sub(self, rhs: Rhs) -> Option<<T as OptionSub<Rhs>>::Output>

Computes the substraction. Read more
§

impl<T, InnerRhs> OptionSubAssign<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionSubAssign<InnerRhs>, InnerRhs: Copy,

§

fn opt_sub_assign(&mut self, rhs: &Option<InnerRhs>)

Performs the substraction assignment. Read more
§

impl<T, InnerRhs> OptionSubAssign<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionSubAssign<InnerRhs>,

§

fn opt_sub_assign(&mut self, rhs: Option<InnerRhs>)

Performs the substraction assignment. Read more
§

impl<T, Rhs> OptionSubAssign<Rhs> for T
where T: OptionOperations + SubAssign<Rhs>,

§

fn opt_sub_assign(&mut self, rhs: Rhs)

Performs the substraction assignment. Read more
§

impl<T, InnerRhs> OptionWrappingAdd<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionWrappingAdd<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionWrappingAdd<InnerRhs>>::Output

The resulting inner type after applying the addition.
§

fn opt_wrapping_add( self, rhs: &Option<InnerRhs> ) -> Option<<T as OptionWrappingAdd<&Option<InnerRhs>, InnerRhs>>::Output>

Computes the addition wrapping at the numeric bounds instead of overflowing. Read more
§

impl<T, InnerRhs> OptionWrappingAdd<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionWrappingAdd<InnerRhs>,

§

type Output = <T as OptionWrappingAdd<InnerRhs>>::Output

The resulting inner type after applying the addition.
§

fn opt_wrapping_add( self, rhs: Option<InnerRhs> ) -> Option<<T as OptionWrappingAdd<Option<InnerRhs>, InnerRhs>>::Output>

Computes the addition wrapping at the numeric bounds instead of overflowing. Read more
§

impl<T, InnerRhs> OptionWrappingMul<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionWrappingMul<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionWrappingMul<InnerRhs>>::Output

The resulting inner type after applying the multiplication.
§

fn opt_wrapping_mul( self, rhs: &Option<InnerRhs> ) -> Option<<T as OptionWrappingMul<&Option<InnerRhs>, InnerRhs>>::Output>

Computes the multiplication wrapping at the numeric bounds instead of overflowing. Read more
§

impl<T, InnerRhs> OptionWrappingMul<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionWrappingMul<InnerRhs>,

§

type Output = <T as OptionWrappingMul<InnerRhs>>::Output

The resulting inner type after applying the multiplication.
§

fn opt_wrapping_mul( self, rhs: Option<InnerRhs> ) -> Option<<T as OptionWrappingMul<Option<InnerRhs>, InnerRhs>>::Output>

Computes the multiplication wrapping at the numeric bounds instead of overflowing. Read more
§

impl<T, InnerRhs> OptionWrappingSub<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionWrappingSub<InnerRhs>, InnerRhs: Copy,

§

type Output = <T as OptionWrappingSub<InnerRhs>>::Output

The resulting inner type after applying the substraction.
§

fn opt_wrapping_sub( self, rhs: &Option<InnerRhs> ) -> Option<<T as OptionWrappingSub<&Option<InnerRhs>, InnerRhs>>::Output>

Computes the substraction wrapping at the numeric bounds instead of overflowing. Read more
§

impl<T, InnerRhs> OptionWrappingSub<Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionWrappingSub<InnerRhs>,

§

type Output = <T as OptionWrappingSub<InnerRhs>>::Output

The resulting inner type after applying the substraction.
§

fn opt_wrapping_sub( self, rhs: Option<InnerRhs> ) -> Option<<T as OptionWrappingSub<Option<InnerRhs>, InnerRhs>>::Output>

Computes the substraction wrapping at the numeric bounds instead of overflowing. Read more
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.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<T, Rhs> NumAssignOps<Rhs> for T
where T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,