Enum number_general::Number [−][src]
A generic number.
Variants
Bool(Boolean)Complex(Complex)Float(Float)Int(Int)UInt(UInt)Implementations
Trait Implementations
impl AddAssign<Number> for Number[src]
impl AddAssign<Number> for Number[src]fn add_assign(&mut self, other: Self)[src]
fn add_assign(&mut self, other: Self)[src]Performs the += operation. Read more
impl<'de> Deserialize<'de> for Number[src]
impl<'de> Deserialize<'de> for Number[src]fn deserialize<D: Deserializer<'de>>(
deserializer: D
) -> Result<Self, <D as Deserializer<'de>>::Error>[src]
fn deserialize<D: Deserializer<'de>>(
deserializer: D
) -> Result<Self, <D as Deserializer<'de>>::Error>[src]Deserialize this value from the given Serde deserializer. Read more
impl DivAssign<Number> for Number[src]
impl DivAssign<Number> for Number[src]fn div_assign(&mut self, other: Self)[src]
fn div_assign(&mut self, other: Self)[src]Performs the /= operation. Read more
impl FromStream for Number[src]
impl FromStream for Number[src]impl<'en> IntoStream<'en> for Number[src]
impl<'en> IntoStream<'en> for Number[src]impl MulAssign<Number> for Number[src]
impl MulAssign<Number> for Number[src]fn mul_assign(&mut self, other: Self)[src]
fn mul_assign(&mut self, other: Self)[src]Performs the *= operation. Read more
impl NumberInstance for Number[src]
impl NumberInstance for Number[src]type Abs = Number
type Exp = Self
type Class = NumberType
fn class(&self) -> NumberType[src]
fn class(&self) -> NumberType[src]Get an impl of NumberClass describing this number.
fn into_type(self, dtype: NumberType) -> Number[src]
fn into_type(self, dtype: NumberType) -> Number[src]Cast this number into the specified NumberClass.
fn and(self, other: Self) -> Self where
Boolean: CastFrom<Self>, [src]
fn and(self, other: Self) -> Self where
Boolean: CastFrom<Self>, [src]Return true if self and other are nonzero.
impl PartialOrd<Number> for Number[src]
impl PartialOrd<Number> for Number[src]fn partial_cmp(&self, other: &Number) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &Number) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.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) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl SubAssign<Number> for Number[src]
impl SubAssign<Number> for Number[src]fn sub_assign(&mut self, other: Self)[src]
fn sub_assign(&mut self, other: Self)[src]Performs the -= operation. Read more
impl Copy for Number[src]
impl Eq for Number[src]
impl StructuralEq for Number[src]
Auto Trait Implementations
impl RefUnwindSafe for Number
impl Send for Number
impl Sync for Number
impl Unpin for Number
impl UnwindSafe for Number
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<F> Match for F[src]
impl<F> Match for F[src]fn matches<T>(&self) -> bool where
T: TryCastFrom<Self>, [src]
fn matches<T>(&self) -> bool where
T: TryCastFrom<Self>, [src]Returns true if self can be cast into the target type T.
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
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]
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<F, T> TryCastFrom<F> for T where
T: CastFrom<F>, [src]
impl<F, T> TryCastFrom<F> for T where
T: CastFrom<F>, [src]pub fn can_cast_from(&F) -> bool[src]
pub fn can_cast_from(&F) -> bool[src]Test if value can be cast into Self.
pub fn opt_cast_from(f: F) -> Option<T>[src]
pub fn opt_cast_from(f: F) -> Option<T>[src]Returns Some(Self) if the source value can be cast into Self, otherwise None.
fn try_cast_from<Err, OnErr>(value: T, on_err: OnErr) -> Result<Self, Err> where
OnErr: FnOnce(&T) -> Err, [src]
fn try_cast_from<Err, OnErr>(value: T, on_err: OnErr) -> Result<Self, Err> where
OnErr: FnOnce(&T) -> Err, [src]Returns Ok(Self) if the source value can be cast into Self, otherwise calls on_err.
impl<F, T> TryCastInto<T> for F where
T: TryCastFrom<F>, [src]
impl<F, T> TryCastInto<T> for F where
T: TryCastFrom<F>, [src]pub fn can_cast_into(&self) -> bool[src]
pub fn can_cast_into(&self) -> bool[src]Test if self can be cast into T.
pub fn opt_cast_into(self) -> Option<T>[src]
pub fn opt_cast_into(self) -> Option<T>[src]Returns Some(T) if self can be cast into T, otherwise None.
fn try_cast_into<Err, OnErr>(self, on_err: OnErr) -> Result<T, Err> where
OnErr: FnOnce(&Self) -> Err, [src]
fn try_cast_into<Err, OnErr>(self, on_err: OnErr) -> Result<T, Err> where
OnErr: FnOnce(&Self) -> Err, [src]Returns Ok(T) if self can be cast into T, otherwise calls on_err.
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,