Enum tc_value::Float [−][src]
A floating-point number.
Variants
F32(f32)F64(f64)Trait Implementations
impl Add<Float> for Float[src]
type Output = Float
The resulting type after applying the + operator.
pub fn add(self, other: Float) -> Float[src]
impl AddAssign<Float> for Float[src]
pub fn add_assign(&mut self, other: Float)[src]
impl CastFrom<Complex> for Float[src]
impl CastFrom<Float> for Boolean[src]
impl CastFrom<Float> for Int[src]
impl CastFrom<Float> for UInt[src]
impl CastFrom<Number> for Float[src]
impl Clone for Float[src]
impl Copy for Float[src]
impl Debug for Float[src]
impl Default for Float[src]
impl Display for Float[src]
impl Div<Float> for Float[src]
type Output = Float
The resulting type after applying the / operator.
pub fn div(self, other: Float) -> <Float as Div<Float>>::Output[src]
impl DivAssign<Float> for Float[src]
pub fn div_assign(&mut self, other: Float)[src]
impl Eq for Float[src]
impl From<Boolean> for Float[src]
impl From<Float> for Number[src]
impl From<Float> for Complex[src]
impl From<Int> for Float[src]
impl From<UInt> for Float[src]
impl From<f32> for Float[src]
impl From<f64> for Float[src]
impl<'en> IntoStream<'en> for Float[src]
pub fn into_stream<E>(
    self, 
    e: E
) -> Result<<E as Encoder<'en>>::Ok, <E as Encoder<'en>>::Error> where
    E: Encoder<'en>, [src]
self,
e: E
) -> Result<<E as Encoder<'en>>::Ok, <E as Encoder<'en>>::Error> where
E: Encoder<'en>,
impl Mul<Float> for Float[src]
type Output = Float
The resulting type after applying the * operator.
pub fn mul(self, other: Float) -> Float[src]
impl MulAssign<Float> for Float[src]
pub fn mul_assign(&mut self, other: Float)[src]
impl NumberInstance for Float[src]
type Abs = Float
type Exp = Float
type Class = FloatType
pub fn class(&self) -> FloatType[src]
pub fn into_type(self, dtype: FloatType) -> Float[src]
pub fn abs(self) -> Float[src]
pub fn pow(self, exp: Float) -> Float[src]
pub fn and(self, other: Self) -> Self where
    Boolean: CastFrom<Self>, [src]
Boolean: CastFrom<Self>,
pub fn not(self) -> Self where
    Boolean: CastFrom<Self>, [src]
Boolean: CastFrom<Self>,
pub fn or(self, other: Self) -> Self where
    Boolean: CastFrom<Self>, [src]
Boolean: CastFrom<Self>,
pub fn xor(self, other: Self) -> Self where
    Boolean: CastFrom<Self>, [src]
Boolean: CastFrom<Self>,
impl PartialEq<Float> for Float[src]
pub fn eq(&self, other: &Float) -> bool[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<Float> for Float[src]
pub fn partial_cmp(&self, other: &Float) -> Option<Ordering>[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl Product<Float> for Float[src]
impl Serialize for Float[src]
pub fn serialize<S>(
    &self, 
    s: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
    S: Serializer, [src]
&self,
s: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
impl Sub<Float> for Float[src]
type Output = Float
The resulting type after applying the - operator.
pub fn sub(self, other: Float) -> Float[src]
impl SubAssign<Float> for Float[src]
pub fn sub_assign(&mut self, other: Float)[src]
impl Sum<Float> for Float[src]
impl<'en> ToStream<'en> for Float[src]
Auto Trait Implementations
impl RefUnwindSafe for Float
impl Send for Float
impl Sync for Float
impl Unpin for Float
impl UnwindSafe for Float
Blanket Implementations
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<F, T> CastFrom<F> for T where
    T: From<F>, [src]
T: From<F>,
impl<T, F> CastInto<F> for T where
    F: CastFrom<T>, [src]
F: CastFrom<T>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<F> Match for F[src]
pub fn matches<T>(&self) -> bool where
    T: TryCastFrom<Self>, [src]
T: TryCastFrom<Self>,
impl<T> ToOwned for T where
    T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
    T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<F, T> TryCastFrom<F> for T where
    T: CastFrom<F>, [src]
T: CastFrom<F>,
pub fn can_cast_from(&F) -> bool[src]
pub fn opt_cast_from(f: F) -> Option<T>[src]
pub fn try_cast_from<Err, OnErr>(value: T, on_err: OnErr) -> Result<Self, Err> where
    OnErr: FnOnce(&T) -> Err, [src]
OnErr: FnOnce(&T) -> Err,
impl<F, T> TryCastInto<T> for F where
    T: TryCastFrom<F>, [src]
T: TryCastFrom<F>,
pub fn can_cast_into(&self) -> bool[src]
pub fn opt_cast_into(self) -> Option<T>[src]
pub fn try_cast_into<Err, OnErr>(self, on_err: OnErr) -> Result<T, Err> where
    OnErr: FnOnce(&Self) -> Err, [src]
OnErr: FnOnce(&Self) -> Err,
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
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]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,