Enum number_general::Complex
source · [−]Expand description
A complex number.
Variants
C32(Complex<f32>)
C64(Complex<f64>)
Trait Implementations
Performs the += operation. Read more
Performs the /= operation. Read more
Return true if this Number is infinite (e.g. f32::INFINITY).
Performs the *= operation. Read more
type Exp = Self
type Log = Self
type Round = Self
type Class = ComplexType
Get an impl of NumberClass describing this number.
Cast this number into the specified NumberClass.
Compute the logarithm of this number with respect to the given base.
Return true if self and other are nonzero.
Return true if self or other is nonzero.
Performs the -= operation. Read more
type Out = Self
Auto Trait Implementations
impl RefUnwindSafe for Complex
impl UnwindSafe for Complex
Blanket Implementations
Mutably borrows from an owned value. Read more
Returns true if self can be cast into the target type T.
Test if value can be cast into Self.
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,
fn try_cast_from<Err, OnErr>(value: T, on_err: OnErr) -> Result<Self, Err> where
OnErr: FnOnce(&T) -> Err,
Returns Ok(Self) if the source value can be cast into Self, otherwise calls on_err.
Test if self can be cast into T.
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,
fn try_cast_into<Err, OnErr>(self, on_err: OnErr) -> Result<T, Err> where
OnErr: FnOnce(&Self) -> Err,
Returns Ok(T) if self can be cast into T, otherwise calls on_err.