#[repr(C)]pub struct Cartesian<T> {
pub re: T,
pub im: T,
}Expand description
Cartesian complex number.
Fields§
§re: TReal part.
im: TImaginary part.
Implementations§
Trait Implementations§
Source§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Add<&Cartesian<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Add<&Cartesian<T>> for Cartesian<T>
Source§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Add<&mut Cartesian<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Add<&mut Cartesian<T>> for Cartesian<T>
Source§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Add<&mut Complex<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Add<&mut Complex<T>> for Cartesian<T>
Source§impl<T1: MixedNum + MixedOps + MixedZero, T2: MixedNum + MixedOps + MixedNumConversion<T1>> Add<T1> for Cartesian<T2>
impl<T1: MixedNum + MixedOps + MixedZero, T2: MixedNum + MixedOps + MixedNumConversion<T1>> Add<T1> for Cartesian<T2>
Source§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> AddAssign<&Cartesian<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> AddAssign<&Cartesian<T>> for Cartesian<T>
Source§fn add_assign(&mut self, rhs: &Cartesian<T>)
fn add_assign(&mut self, rhs: &Cartesian<T>)
+= operation. Read moreSource§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> AddAssign<&Complex<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> AddAssign<&Complex<T>> for Cartesian<T>
Source§fn add_assign(&mut self, rhs: &Complex<T>)
fn add_assign(&mut self, rhs: &Complex<T>)
+= operation. Read moreSource§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> AddAssign<&mut Cartesian<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> AddAssign<&mut Cartesian<T>> for Cartesian<T>
Source§fn add_assign(&mut self, rhs: &mut Cartesian<T>)
fn add_assign(&mut self, rhs: &mut Cartesian<T>)
+= operation. Read moreSource§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> AddAssign<&mut Complex<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> AddAssign<&mut Complex<T>> for Cartesian<T>
Source§fn add_assign(&mut self, rhs: &mut Complex<T>)
fn add_assign(&mut self, rhs: &mut Complex<T>)
+= operation. Read moreSource§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> AddAssign<Complex<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> AddAssign<Complex<T>> for Cartesian<T>
Source§fn add_assign(&mut self, rhs: Complex<T>)
fn add_assign(&mut self, rhs: Complex<T>)
+= operation. Read moreSource§impl<T1: MixedNum + MixedOps + MixedZero, T2: MixedOps + MixedNumConversion<T1>> AddAssign<T1> for Cartesian<T2>
impl<T1: MixedNum + MixedOps + MixedZero, T2: MixedOps + MixedNumConversion<T1>> AddAssign<T1> for Cartesian<T2>
Source§fn add_assign(&mut self, rhs: T1)
fn add_assign(&mut self, rhs: T1)
§Example
use mixed_num::*;
use mixed_num::traits::*;
let mut c_num = Cartesian::new(1f32,2f32);
c_num += 2f64;
assert_eq!{ c_num.to_string(), "3+2i" };Source§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> AddAssign for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> AddAssign for Cartesian<T>
Source§fn add_assign(&mut self, rhs: Cartesian<T>)
fn add_assign(&mut self, rhs: Cartesian<T>)
+= operation. Read moreSource§impl<T: MixedNum + MixedNumSigned + MixedAtan> Arg<T> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedAtan> Arg<T> for Cartesian<T>
Source§impl<T: MixedComplex + NewFromCartesian<T2>, T2: MixedNum + MixedNumSigned> Conj<T> for Cartesian<T2>
impl<T: MixedComplex + NewFromCartesian<T2>, T2: MixedNum + MixedNumSigned> Conj<T> for Cartesian<T2>
Source§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedPowi> Div<&Cartesian<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedPowi> Div<&Cartesian<T>> for Cartesian<T>
Source§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedPowi> Div<&mut Cartesian<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedPowi> Div<&mut Cartesian<T>> for Cartesian<T>
Source§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedPowi> Div<&mut Complex<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedPowi> Div<&mut Complex<T>> for Cartesian<T>
Source§impl<T1: MixedNumSigned + MixedOps + MixedZero, T2: MixedReal + MixedOps + MixedNumConversion<T1>> Div<T1> for Cartesian<T2>
impl<T1: MixedNumSigned + MixedOps + MixedZero, T2: MixedReal + MixedOps + MixedNumConversion<T1>> Div<T1> for Cartesian<T2>
Source§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero + MixedPowi> DivAssign<&Cartesian<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero + MixedPowi> DivAssign<&Cartesian<T>> for Cartesian<T>
Source§fn div_assign(&mut self, rhs: &Cartesian<T>)
fn div_assign(&mut self, rhs: &Cartesian<T>)
/= operation. Read moreSource§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero + MixedPowi> DivAssign<&Complex<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero + MixedPowi> DivAssign<&Complex<T>> for Cartesian<T>
Source§fn div_assign(&mut self, rhs: &Complex<T>)
fn div_assign(&mut self, rhs: &Complex<T>)
/= operation. Read moreSource§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero + MixedPowi> DivAssign<&mut Cartesian<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero + MixedPowi> DivAssign<&mut Cartesian<T>> for Cartesian<T>
Source§fn div_assign(&mut self, rhs: &mut Cartesian<T>)
fn div_assign(&mut self, rhs: &mut Cartesian<T>)
/= operation. Read moreSource§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero + MixedPowi> DivAssign<&mut Complex<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero + MixedPowi> DivAssign<&mut Complex<T>> for Cartesian<T>
Source§fn div_assign(&mut self, rhs: &mut Complex<T>)
fn div_assign(&mut self, rhs: &mut Complex<T>)
/= operation. Read moreSource§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero + MixedPowi> DivAssign<Complex<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero + MixedPowi> DivAssign<Complex<T>> for Cartesian<T>
Source§fn div_assign(&mut self, rhs: Complex<T>)
fn div_assign(&mut self, rhs: Complex<T>)
/= operation. Read moreSource§impl<T1: MixedNumSigned + MixedOps + MixedZero, T2: MixedReal + MixedOps + MixedNumConversion<T1>> DivAssign<T1> for Cartesian<T2>
impl<T1: MixedNumSigned + MixedOps + MixedZero, T2: MixedReal + MixedOps + MixedNumConversion<T1>> DivAssign<T1> for Cartesian<T2>
Source§fn div_assign(&mut self, rhs: T1)
fn div_assign(&mut self, rhs: T1)
§Example
use mixed_num::*;
use mixed_num::traits::*;
let mut c_num = Cartesian::new(-2f32,4f32);
c_num /= 2f64;
assert_eq!{ c_num.to_string(), "-1+2i" };Source§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero + MixedPowi> DivAssign for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero + MixedPowi> DivAssign for Cartesian<T>
Source§fn div_assign(&mut self, rhs: Cartesian<T>)
fn div_assign(&mut self, rhs: Cartesian<T>)
/= operation. Read moreSource§impl<T: MixedNum + MixedNumSigned + MixedSqrt + MixedPowi + MixedOps> Mag<T> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedSqrt + MixedPowi + MixedOps> Mag<T> for Cartesian<T>
Source§impl<T: MixedNum + MixedNumSigned + MixedSqrt + MixedPowi + MixedOps + MixedZero> MixedAbs for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedSqrt + MixedPowi + MixedOps + MixedZero> MixedAbs for Cartesian<T>
Source§impl<T: MixedNum + MixedZero> MixedComplexConversion<T> for Cartesian<T>
impl<T: MixedNum + MixedZero> MixedComplexConversion<T> for Cartesian<T>
Source§fn mixed_to_complex(number: T) -> Self
fn mixed_to_complex(number: T) -> Self
Type cast from real number T to Complex
Source§impl<T: MixedReal + MixedNumSigned + MixedSin + MixedExp + MulAssign> MixedExp for Cartesian<T>
impl<T: MixedReal + MixedNumSigned + MixedSin + MixedExp + MulAssign> MixedExp for Cartesian<T>
Source§fn mixed_exp(&self) -> Cartesian<T>
fn mixed_exp(&self) -> Cartesian<T>
§Example
use mixed_num::*;
use mixed_num::traits::*;
let mut c_num = Cartesian::new(0f32,f32::mixed_pi());
c_num = c_num.mixed_exp();
assert_eq!{ c_num.to_string(), "-1+-0i" };
let mut c_num = Cartesian::new(1f32,f32::mixed_pi());
c_num = c_num.mixed_exp();
assert_eq!{ c_num.to_string(), "-2.7182817+-0i" };
let mut c_num = Cartesian::new(1f32,0f32);
c_num = c_num.mixed_exp();
assert_eq!{ c_num.to_string(), "2.7182817+0i" };Source§impl<T1: MixedNum, T2: MixedNum + MixedNumSigned + MixedNumConversion<T1>> MixedNumConversion<Cartesian<T1>> for Cartesian<T2>
impl<T1: MixedNum, T2: MixedNum + MixedNumSigned + MixedNumConversion<T1>> MixedNumConversion<Cartesian<T1>> for Cartesian<T2>
Source§fn mixed_from_num(number: Cartesian<T1>) -> Self
fn mixed_from_num(number: Cartesian<T1>) -> Self
Only uses the real part.
Source§fn mixed_to_num(&self) -> Cartesian<T1>
fn mixed_to_num(&self) -> Cartesian<T1>
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI16<U8>
impl MixedNumConversion<Cartesian<f32>> for FixedI16<U8>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI16<U9>
impl MixedNumConversion<Cartesian<f32>> for FixedI16<U9>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI16<U10>
impl MixedNumConversion<Cartesian<f32>> for FixedI16<U10>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI16<U11>
impl MixedNumConversion<Cartesian<f32>> for FixedI16<U11>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI16<U12>
impl MixedNumConversion<Cartesian<f32>> for FixedI16<U12>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI16<U13>
impl MixedNumConversion<Cartesian<f32>> for FixedI16<U13>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI16<U4>
impl MixedNumConversion<Cartesian<f32>> for FixedI16<U4>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI16<U5>
impl MixedNumConversion<Cartesian<f32>> for FixedI16<U5>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI16<U6>
impl MixedNumConversion<Cartesian<f32>> for FixedI16<U6>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI16<U7>
impl MixedNumConversion<Cartesian<f32>> for FixedI16<U7>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI16<U2>
impl MixedNumConversion<Cartesian<f32>> for FixedI16<U2>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI16<U3>
impl MixedNumConversion<Cartesian<f32>> for FixedI16<U3>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI16<U1>
impl MixedNumConversion<Cartesian<f32>> for FixedI16<U1>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI16<U0>
impl MixedNumConversion<Cartesian<f32>> for FixedI16<U0>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U16>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U16>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U17>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U17>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U18>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U18>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U19>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U19>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U20>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U20>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U21>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U21>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U22>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U22>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U23>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U23>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U24>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U24>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U25>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U25>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U26>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U26>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U27>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U27>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U28>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U28>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U29>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U29>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U8>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U8>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U9>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U9>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U10>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U10>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U11>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U11>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U12>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U12>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U13>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U13>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U14>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U14>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U15>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U15>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U4>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U4>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U5>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U5>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U6>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U6>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U7>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U7>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U2>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U2>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U3>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U3>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U1>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U1>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI32<U0>
impl MixedNumConversion<Cartesian<f32>> for FixedI32<U0>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U32>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U32>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U33>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U33>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U34>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U34>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U35>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U35>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U36>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U36>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U37>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U37>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U38>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U38>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U39>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U39>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U40>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U40>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U41>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U41>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U42>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U42>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U43>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U43>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U44>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U44>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U45>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U45>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U46>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U46>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U47>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U47>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U48>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U48>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U49>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U49>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U50>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U50>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U51>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U51>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U52>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U52>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U53>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U53>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U54>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U54>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U55>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U55>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U56>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U56>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U57>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U57>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U58>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U58>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U59>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U59>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U60>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U60>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U61>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U61>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U16>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U16>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U17>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U17>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U18>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U18>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U19>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U19>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U20>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U20>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U21>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U21>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U22>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U22>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U23>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U23>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U24>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U24>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U25>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U25>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U26>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U26>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U27>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U27>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U28>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U28>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U29>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U29>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U30>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U30>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U31>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U31>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U8>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U8>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U9>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U9>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U10>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U10>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U11>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U11>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U12>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U12>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U13>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U13>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U14>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U14>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U15>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U15>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U4>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U4>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U5>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U5>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U6>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U6>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U7>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U7>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U2>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U2>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U3>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U3>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U1>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U1>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI64<U0>
impl MixedNumConversion<Cartesian<f32>> for FixedI64<U0>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI8<U4>
impl MixedNumConversion<Cartesian<f32>> for FixedI8<U4>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI8<U5>
impl MixedNumConversion<Cartesian<f32>> for FixedI8<U5>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI8<U2>
impl MixedNumConversion<Cartesian<f32>> for FixedI8<U2>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI8<U3>
impl MixedNumConversion<Cartesian<f32>> for FixedI8<U3>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI8<U1>
impl MixedNumConversion<Cartesian<f32>> for FixedI8<U1>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedI8<U0>
impl MixedNumConversion<Cartesian<f32>> for FixedI8<U0>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU16<U8>
impl MixedNumConversion<Cartesian<f32>> for FixedU16<U8>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU16<U9>
impl MixedNumConversion<Cartesian<f32>> for FixedU16<U9>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU16<U10>
impl MixedNumConversion<Cartesian<f32>> for FixedU16<U10>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU16<U11>
impl MixedNumConversion<Cartesian<f32>> for FixedU16<U11>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU16<U12>
impl MixedNumConversion<Cartesian<f32>> for FixedU16<U12>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU16<U13>
impl MixedNumConversion<Cartesian<f32>> for FixedU16<U13>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU16<U4>
impl MixedNumConversion<Cartesian<f32>> for FixedU16<U4>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU16<U5>
impl MixedNumConversion<Cartesian<f32>> for FixedU16<U5>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU16<U6>
impl MixedNumConversion<Cartesian<f32>> for FixedU16<U6>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU16<U7>
impl MixedNumConversion<Cartesian<f32>> for FixedU16<U7>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU16<U2>
impl MixedNumConversion<Cartesian<f32>> for FixedU16<U2>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU16<U3>
impl MixedNumConversion<Cartesian<f32>> for FixedU16<U3>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU16<U1>
impl MixedNumConversion<Cartesian<f32>> for FixedU16<U1>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU16<U0>
impl MixedNumConversion<Cartesian<f32>> for FixedU16<U0>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U16>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U16>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U17>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U17>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U18>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U18>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U19>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U19>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U20>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U20>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U21>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U21>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U22>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U22>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U23>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U23>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U24>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U24>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U25>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U25>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U26>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U26>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U27>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U27>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U28>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U28>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U29>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U29>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U8>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U8>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U9>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U9>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U10>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U10>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U11>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U11>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U12>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U12>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U13>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U13>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U14>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U14>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U15>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U15>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U4>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U4>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U5>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U5>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U6>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U6>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U7>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U7>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U2>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U2>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U3>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U3>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U1>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U1>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU32<U0>
impl MixedNumConversion<Cartesian<f32>> for FixedU32<U0>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U32>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U32>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U33>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U33>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U34>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U34>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U35>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U35>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U36>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U36>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U37>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U37>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U38>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U38>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U39>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U39>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U40>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U40>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U41>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U41>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U42>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U42>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U43>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U43>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U44>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U44>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U45>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U45>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U46>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U46>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U47>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U47>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U48>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U48>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U49>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U49>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U50>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U50>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U51>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U51>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U52>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U52>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U53>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U53>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U54>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U54>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U55>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U55>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U56>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U56>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U57>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U57>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U58>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U58>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U59>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U59>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U60>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U60>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U61>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U61>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U16>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U16>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U17>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U17>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U18>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U18>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U19>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U19>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U20>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U20>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U21>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U21>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U22>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U22>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U23>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U23>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U24>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U24>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U25>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U25>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U26>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U26>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U27>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U27>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U28>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U28>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U29>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U29>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U30>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U30>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U31>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U31>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U8>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U8>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U9>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U9>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U10>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U10>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U11>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U11>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U12>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U12>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U13>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U13>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U14>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U14>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U15>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U15>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U4>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U4>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U5>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U5>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U6>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U6>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U7>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U7>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U2>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U2>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U3>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U3>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U1>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U1>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU64<U0>
impl MixedNumConversion<Cartesian<f32>> for FixedU64<U0>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU8<U4>
impl MixedNumConversion<Cartesian<f32>> for FixedU8<U4>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU8<U5>
impl MixedNumConversion<Cartesian<f32>> for FixedU8<U5>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU8<U2>
impl MixedNumConversion<Cartesian<f32>> for FixedU8<U2>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU8<U3>
impl MixedNumConversion<Cartesian<f32>> for FixedU8<U3>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU8<U1>
impl MixedNumConversion<Cartesian<f32>> for FixedU8<U1>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for FixedU8<U0>
impl MixedNumConversion<Cartesian<f32>> for FixedU8<U0>
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f32>> for f32
impl MixedNumConversion<Cartesian<f32>> for f32
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<f32>> for f64
impl MixedNumConversion<Cartesian<f32>> for f64
Source§fn mixed_from_num(number: Cartesian<f32>) -> Self
fn mixed_from_num(number: Cartesian<f32>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<f32>
fn mixed_to_num(&self) -> Cartesian<f32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<f64>> for FixedI16<U8>
impl MixedNumConversion<Cartesian<f64>> for FixedI16<U8>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI16<U9>
impl MixedNumConversion<Cartesian<f64>> for FixedI16<U9>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI16<U10>
impl MixedNumConversion<Cartesian<f64>> for FixedI16<U10>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI16<U11>
impl MixedNumConversion<Cartesian<f64>> for FixedI16<U11>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI16<U12>
impl MixedNumConversion<Cartesian<f64>> for FixedI16<U12>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI16<U13>
impl MixedNumConversion<Cartesian<f64>> for FixedI16<U13>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI16<U4>
impl MixedNumConversion<Cartesian<f64>> for FixedI16<U4>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI16<U5>
impl MixedNumConversion<Cartesian<f64>> for FixedI16<U5>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI16<U6>
impl MixedNumConversion<Cartesian<f64>> for FixedI16<U6>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI16<U7>
impl MixedNumConversion<Cartesian<f64>> for FixedI16<U7>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI16<U2>
impl MixedNumConversion<Cartesian<f64>> for FixedI16<U2>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI16<U3>
impl MixedNumConversion<Cartesian<f64>> for FixedI16<U3>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI16<U1>
impl MixedNumConversion<Cartesian<f64>> for FixedI16<U1>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI16<U0>
impl MixedNumConversion<Cartesian<f64>> for FixedI16<U0>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U16>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U16>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U17>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U17>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U18>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U18>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U19>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U19>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U20>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U20>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U21>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U21>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U22>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U22>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U23>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U23>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U24>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U24>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U25>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U25>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U26>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U26>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U27>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U27>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U28>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U28>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U29>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U29>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U8>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U8>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U9>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U9>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U10>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U10>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U11>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U11>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U12>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U12>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U13>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U13>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U14>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U14>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U15>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U15>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U4>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U4>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U5>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U5>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U6>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U6>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U7>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U7>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U2>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U2>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U3>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U3>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U1>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U1>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI32<U0>
impl MixedNumConversion<Cartesian<f64>> for FixedI32<U0>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U32>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U32>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U33>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U33>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U34>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U34>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U35>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U35>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U36>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U36>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U37>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U37>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U38>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U38>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U39>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U39>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U40>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U40>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U41>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U41>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U42>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U42>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U43>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U43>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U44>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U44>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U45>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U45>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U46>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U46>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U47>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U47>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U48>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U48>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U49>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U49>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U50>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U50>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U51>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U51>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U52>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U52>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U53>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U53>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U54>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U54>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U55>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U55>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U56>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U56>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U57>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U57>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U58>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U58>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U59>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U59>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U60>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U60>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U61>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U61>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U16>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U16>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U17>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U17>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U18>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U18>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U19>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U19>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U20>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U20>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U21>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U21>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U22>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U22>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U23>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U23>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U24>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U24>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U25>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U25>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U26>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U26>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U27>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U27>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U28>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U28>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U29>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U29>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U30>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U30>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U31>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U31>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U8>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U8>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U9>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U9>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U10>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U10>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U11>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U11>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U12>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U12>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U13>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U13>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U14>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U14>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U15>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U15>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U4>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U4>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U5>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U5>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U6>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U6>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U7>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U7>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U2>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U2>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U3>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U3>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U1>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U1>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI64<U0>
impl MixedNumConversion<Cartesian<f64>> for FixedI64<U0>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI8<U4>
impl MixedNumConversion<Cartesian<f64>> for FixedI8<U4>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI8<U5>
impl MixedNumConversion<Cartesian<f64>> for FixedI8<U5>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI8<U2>
impl MixedNumConversion<Cartesian<f64>> for FixedI8<U2>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI8<U3>
impl MixedNumConversion<Cartesian<f64>> for FixedI8<U3>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI8<U1>
impl MixedNumConversion<Cartesian<f64>> for FixedI8<U1>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedI8<U0>
impl MixedNumConversion<Cartesian<f64>> for FixedI8<U0>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU16<U8>
impl MixedNumConversion<Cartesian<f64>> for FixedU16<U8>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU16<U9>
impl MixedNumConversion<Cartesian<f64>> for FixedU16<U9>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU16<U10>
impl MixedNumConversion<Cartesian<f64>> for FixedU16<U10>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU16<U11>
impl MixedNumConversion<Cartesian<f64>> for FixedU16<U11>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU16<U12>
impl MixedNumConversion<Cartesian<f64>> for FixedU16<U12>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU16<U13>
impl MixedNumConversion<Cartesian<f64>> for FixedU16<U13>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU16<U4>
impl MixedNumConversion<Cartesian<f64>> for FixedU16<U4>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU16<U5>
impl MixedNumConversion<Cartesian<f64>> for FixedU16<U5>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU16<U6>
impl MixedNumConversion<Cartesian<f64>> for FixedU16<U6>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU16<U7>
impl MixedNumConversion<Cartesian<f64>> for FixedU16<U7>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU16<U2>
impl MixedNumConversion<Cartesian<f64>> for FixedU16<U2>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU16<U3>
impl MixedNumConversion<Cartesian<f64>> for FixedU16<U3>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU16<U1>
impl MixedNumConversion<Cartesian<f64>> for FixedU16<U1>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU16<U0>
impl MixedNumConversion<Cartesian<f64>> for FixedU16<U0>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U16>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U16>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U17>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U17>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U18>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U18>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U19>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U19>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U20>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U20>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U21>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U21>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U22>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U22>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U23>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U23>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U24>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U24>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U25>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U25>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U26>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U26>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U27>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U27>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U28>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U28>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U29>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U29>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U8>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U8>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U9>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U9>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U10>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U10>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U11>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U11>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U12>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U12>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U13>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U13>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U14>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U14>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U15>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U15>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U4>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U4>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U5>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U5>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U6>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U6>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U7>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U7>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U2>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U2>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U3>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U3>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U1>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U1>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU32<U0>
impl MixedNumConversion<Cartesian<f64>> for FixedU32<U0>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U32>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U32>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U33>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U33>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U34>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U34>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U35>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U35>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U36>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U36>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U37>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U37>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U38>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U38>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U39>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U39>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U40>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U40>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U41>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U41>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U42>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U42>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U43>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U43>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U44>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U44>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U45>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U45>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U46>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U46>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U47>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U47>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U48>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U48>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U49>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U49>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U50>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U50>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U51>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U51>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U52>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U52>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U53>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U53>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U54>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U54>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U55>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U55>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U56>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U56>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U57>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U57>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U58>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U58>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U59>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U59>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U60>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U60>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U61>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U61>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U16>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U16>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U17>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U17>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U18>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U18>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U19>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U19>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U20>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U20>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U21>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U21>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U22>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U22>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U23>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U23>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U24>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U24>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U25>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U25>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U26>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U26>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U27>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U27>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U28>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U28>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U29>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U29>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U30>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U30>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U31>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U31>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U8>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U8>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U9>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U9>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U10>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U10>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U11>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U11>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U12>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U12>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U13>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U13>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U14>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U14>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U15>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U15>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U4>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U4>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U5>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U5>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U6>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U6>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U7>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U7>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U2>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U2>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U3>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U3>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U1>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U1>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU64<U0>
impl MixedNumConversion<Cartesian<f64>> for FixedU64<U0>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU8<U4>
impl MixedNumConversion<Cartesian<f64>> for FixedU8<U4>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU8<U5>
impl MixedNumConversion<Cartesian<f64>> for FixedU8<U5>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU8<U2>
impl MixedNumConversion<Cartesian<f64>> for FixedU8<U2>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU8<U3>
impl MixedNumConversion<Cartesian<f64>> for FixedU8<U3>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU8<U1>
impl MixedNumConversion<Cartesian<f64>> for FixedU8<U1>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for FixedU8<U0>
impl MixedNumConversion<Cartesian<f64>> for FixedU8<U0>
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<f64>> for f32
impl MixedNumConversion<Cartesian<f64>> for f32
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<f64>> for f64
impl MixedNumConversion<Cartesian<f64>> for f64
Source§fn mixed_from_num(number: Cartesian<f64>) -> Self
fn mixed_from_num(number: Cartesian<f64>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<f64>
fn mixed_to_num(&self) -> Cartesian<f64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<i128>> for FixedI16<U8>
impl MixedNumConversion<Cartesian<i128>> for FixedI16<U8>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI16<U9>
impl MixedNumConversion<Cartesian<i128>> for FixedI16<U9>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI16<U10>
impl MixedNumConversion<Cartesian<i128>> for FixedI16<U10>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI16<U11>
impl MixedNumConversion<Cartesian<i128>> for FixedI16<U11>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI16<U12>
impl MixedNumConversion<Cartesian<i128>> for FixedI16<U12>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI16<U13>
impl MixedNumConversion<Cartesian<i128>> for FixedI16<U13>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI16<U4>
impl MixedNumConversion<Cartesian<i128>> for FixedI16<U4>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI16<U5>
impl MixedNumConversion<Cartesian<i128>> for FixedI16<U5>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI16<U6>
impl MixedNumConversion<Cartesian<i128>> for FixedI16<U6>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI16<U7>
impl MixedNumConversion<Cartesian<i128>> for FixedI16<U7>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI16<U2>
impl MixedNumConversion<Cartesian<i128>> for FixedI16<U2>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI16<U3>
impl MixedNumConversion<Cartesian<i128>> for FixedI16<U3>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI16<U1>
impl MixedNumConversion<Cartesian<i128>> for FixedI16<U1>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI16<U0>
impl MixedNumConversion<Cartesian<i128>> for FixedI16<U0>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U16>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U16>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U17>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U17>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U18>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U18>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U19>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U19>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U20>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U20>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U21>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U21>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U22>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U22>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U23>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U23>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U24>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U24>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U25>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U25>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U26>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U26>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U27>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U27>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U28>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U28>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U29>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U29>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U8>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U8>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U9>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U9>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U10>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U10>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U11>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U11>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U12>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U12>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U13>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U13>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U14>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U14>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U15>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U15>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U4>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U4>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U5>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U5>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U6>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U6>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U7>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U7>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U2>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U2>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U3>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U3>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U1>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U1>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI32<U0>
impl MixedNumConversion<Cartesian<i128>> for FixedI32<U0>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U32>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U32>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U33>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U33>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U34>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U34>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U35>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U35>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U36>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U36>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U37>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U37>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U38>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U38>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U39>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U39>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U40>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U40>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U41>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U41>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U42>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U42>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U43>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U43>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U44>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U44>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U45>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U45>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U46>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U46>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U47>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U47>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U48>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U48>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U49>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U49>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U50>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U50>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U51>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U51>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U52>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U52>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U53>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U53>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U54>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U54>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U55>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U55>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U56>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U56>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U57>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U57>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U58>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U58>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U59>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U59>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U60>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U60>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U61>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U61>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U16>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U16>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U17>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U17>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U18>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U18>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U19>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U19>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U20>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U20>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U21>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U21>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U22>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U22>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U23>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U23>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U24>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U24>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U25>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U25>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U26>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U26>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U27>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U27>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U28>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U28>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U29>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U29>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U30>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U30>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U31>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U31>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U8>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U8>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U9>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U9>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U10>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U10>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U11>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U11>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U12>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U12>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U13>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U13>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U14>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U14>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U15>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U15>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U4>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U4>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U5>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U5>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U6>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U6>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U7>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U7>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U2>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U2>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U3>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U3>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U1>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U1>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI64<U0>
impl MixedNumConversion<Cartesian<i128>> for FixedI64<U0>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI8<U4>
impl MixedNumConversion<Cartesian<i128>> for FixedI8<U4>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI8<U5>
impl MixedNumConversion<Cartesian<i128>> for FixedI8<U5>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI8<U2>
impl MixedNumConversion<Cartesian<i128>> for FixedI8<U2>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI8<U3>
impl MixedNumConversion<Cartesian<i128>> for FixedI8<U3>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI8<U1>
impl MixedNumConversion<Cartesian<i128>> for FixedI8<U1>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedI8<U0>
impl MixedNumConversion<Cartesian<i128>> for FixedI8<U0>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU16<U8>
impl MixedNumConversion<Cartesian<i128>> for FixedU16<U8>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU16<U9>
impl MixedNumConversion<Cartesian<i128>> for FixedU16<U9>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU16<U10>
impl MixedNumConversion<Cartesian<i128>> for FixedU16<U10>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU16<U11>
impl MixedNumConversion<Cartesian<i128>> for FixedU16<U11>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU16<U12>
impl MixedNumConversion<Cartesian<i128>> for FixedU16<U12>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU16<U13>
impl MixedNumConversion<Cartesian<i128>> for FixedU16<U13>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU16<U4>
impl MixedNumConversion<Cartesian<i128>> for FixedU16<U4>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU16<U5>
impl MixedNumConversion<Cartesian<i128>> for FixedU16<U5>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU16<U6>
impl MixedNumConversion<Cartesian<i128>> for FixedU16<U6>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU16<U7>
impl MixedNumConversion<Cartesian<i128>> for FixedU16<U7>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU16<U2>
impl MixedNumConversion<Cartesian<i128>> for FixedU16<U2>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU16<U3>
impl MixedNumConversion<Cartesian<i128>> for FixedU16<U3>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU16<U1>
impl MixedNumConversion<Cartesian<i128>> for FixedU16<U1>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU16<U0>
impl MixedNumConversion<Cartesian<i128>> for FixedU16<U0>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U16>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U16>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U17>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U17>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U18>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U18>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U19>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U19>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U20>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U20>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U21>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U21>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U22>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U22>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U23>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U23>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U24>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U24>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U25>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U25>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U26>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U26>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U27>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U27>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U28>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U28>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U29>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U29>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U8>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U8>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U9>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U9>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U10>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U10>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U11>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U11>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U12>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U12>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U13>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U13>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U14>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U14>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U15>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U15>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U4>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U4>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U5>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U5>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U6>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U6>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U7>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U7>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U2>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U2>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U3>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U3>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U1>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U1>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU32<U0>
impl MixedNumConversion<Cartesian<i128>> for FixedU32<U0>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U32>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U32>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U33>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U33>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U34>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U34>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U35>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U35>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U36>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U36>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U37>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U37>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U38>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U38>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U39>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U39>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U40>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U40>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U41>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U41>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U42>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U42>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U43>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U43>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U44>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U44>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U45>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U45>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U46>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U46>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U47>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U47>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U48>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U48>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U49>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U49>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U50>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U50>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U51>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U51>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U52>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U52>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U53>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U53>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U54>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U54>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U55>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U55>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U56>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U56>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U57>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U57>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U58>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U58>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U59>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U59>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U60>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U60>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U61>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U61>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U16>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U16>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U17>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U17>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U18>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U18>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U19>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U19>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U20>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U20>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U21>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U21>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U22>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U22>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U23>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U23>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U24>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U24>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U25>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U25>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U26>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U26>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U27>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U27>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U28>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U28>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U29>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U29>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U30>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U30>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U31>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U31>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U8>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U8>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U9>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U9>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U10>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U10>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U11>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U11>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U12>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U12>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U13>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U13>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U14>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U14>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U15>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U15>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U4>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U4>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U5>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U5>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U6>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U6>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U7>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U7>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U2>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U2>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U3>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U3>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U1>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U1>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU64<U0>
impl MixedNumConversion<Cartesian<i128>> for FixedU64<U0>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU8<U4>
impl MixedNumConversion<Cartesian<i128>> for FixedU8<U4>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU8<U5>
impl MixedNumConversion<Cartesian<i128>> for FixedU8<U5>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU8<U2>
impl MixedNumConversion<Cartesian<i128>> for FixedU8<U2>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU8<U3>
impl MixedNumConversion<Cartesian<i128>> for FixedU8<U3>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU8<U1>
impl MixedNumConversion<Cartesian<i128>> for FixedU8<U1>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for FixedU8<U0>
impl MixedNumConversion<Cartesian<i128>> for FixedU8<U0>
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i128>> for f32
impl MixedNumConversion<Cartesian<i128>> for f32
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<i128>> for f64
impl MixedNumConversion<Cartesian<i128>> for f64
Source§fn mixed_from_num(number: Cartesian<i128>) -> Self
fn mixed_from_num(number: Cartesian<i128>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<i128>
fn mixed_to_num(&self) -> Cartesian<i128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<i16>> for FixedI16<U8>
impl MixedNumConversion<Cartesian<i16>> for FixedI16<U8>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI16<U9>
impl MixedNumConversion<Cartesian<i16>> for FixedI16<U9>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI16<U10>
impl MixedNumConversion<Cartesian<i16>> for FixedI16<U10>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI16<U11>
impl MixedNumConversion<Cartesian<i16>> for FixedI16<U11>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI16<U12>
impl MixedNumConversion<Cartesian<i16>> for FixedI16<U12>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI16<U13>
impl MixedNumConversion<Cartesian<i16>> for FixedI16<U13>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI16<U4>
impl MixedNumConversion<Cartesian<i16>> for FixedI16<U4>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI16<U5>
impl MixedNumConversion<Cartesian<i16>> for FixedI16<U5>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI16<U6>
impl MixedNumConversion<Cartesian<i16>> for FixedI16<U6>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI16<U7>
impl MixedNumConversion<Cartesian<i16>> for FixedI16<U7>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI16<U2>
impl MixedNumConversion<Cartesian<i16>> for FixedI16<U2>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI16<U3>
impl MixedNumConversion<Cartesian<i16>> for FixedI16<U3>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI16<U1>
impl MixedNumConversion<Cartesian<i16>> for FixedI16<U1>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI16<U0>
impl MixedNumConversion<Cartesian<i16>> for FixedI16<U0>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U16>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U16>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U17>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U17>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U18>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U18>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U19>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U19>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U20>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U20>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U21>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U21>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U22>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U22>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U23>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U23>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U24>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U24>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U25>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U25>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U26>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U26>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U27>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U27>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U28>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U28>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U29>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U29>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U8>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U8>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U9>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U9>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U10>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U10>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U11>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U11>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U12>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U12>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U13>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U13>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U14>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U14>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U15>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U15>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U4>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U4>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U5>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U5>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U6>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U6>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U7>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U7>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U2>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U2>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U3>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U3>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U1>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U1>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI32<U0>
impl MixedNumConversion<Cartesian<i16>> for FixedI32<U0>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U32>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U32>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U33>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U33>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U34>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U34>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U35>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U35>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U36>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U36>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U37>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U37>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U38>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U38>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U39>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U39>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U40>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U40>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U41>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U41>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U42>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U42>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U43>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U43>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U44>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U44>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U45>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U45>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U46>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U46>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U47>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U47>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U48>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U48>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U49>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U49>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U50>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U50>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U51>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U51>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U52>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U52>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U53>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U53>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U54>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U54>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U55>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U55>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U56>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U56>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U57>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U57>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U58>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U58>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U59>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U59>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U60>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U60>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U61>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U61>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U16>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U16>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U17>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U17>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U18>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U18>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U19>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U19>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U20>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U20>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U21>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U21>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U22>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U22>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U23>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U23>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U24>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U24>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U25>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U25>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U26>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U26>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U27>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U27>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U28>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U28>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U29>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U29>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U30>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U30>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U31>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U31>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U8>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U8>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U9>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U9>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U10>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U10>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U11>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U11>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U12>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U12>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U13>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U13>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U14>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U14>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U15>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U15>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U4>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U4>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U5>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U5>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U6>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U6>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U7>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U7>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U2>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U2>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U3>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U3>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U1>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U1>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI64<U0>
impl MixedNumConversion<Cartesian<i16>> for FixedI64<U0>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI8<U4>
impl MixedNumConversion<Cartesian<i16>> for FixedI8<U4>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI8<U5>
impl MixedNumConversion<Cartesian<i16>> for FixedI8<U5>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI8<U2>
impl MixedNumConversion<Cartesian<i16>> for FixedI8<U2>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI8<U3>
impl MixedNumConversion<Cartesian<i16>> for FixedI8<U3>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI8<U1>
impl MixedNumConversion<Cartesian<i16>> for FixedI8<U1>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedI8<U0>
impl MixedNumConversion<Cartesian<i16>> for FixedI8<U0>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU16<U8>
impl MixedNumConversion<Cartesian<i16>> for FixedU16<U8>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU16<U9>
impl MixedNumConversion<Cartesian<i16>> for FixedU16<U9>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU16<U10>
impl MixedNumConversion<Cartesian<i16>> for FixedU16<U10>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU16<U11>
impl MixedNumConversion<Cartesian<i16>> for FixedU16<U11>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU16<U12>
impl MixedNumConversion<Cartesian<i16>> for FixedU16<U12>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU16<U13>
impl MixedNumConversion<Cartesian<i16>> for FixedU16<U13>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU16<U4>
impl MixedNumConversion<Cartesian<i16>> for FixedU16<U4>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU16<U5>
impl MixedNumConversion<Cartesian<i16>> for FixedU16<U5>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU16<U6>
impl MixedNumConversion<Cartesian<i16>> for FixedU16<U6>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU16<U7>
impl MixedNumConversion<Cartesian<i16>> for FixedU16<U7>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU16<U2>
impl MixedNumConversion<Cartesian<i16>> for FixedU16<U2>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU16<U3>
impl MixedNumConversion<Cartesian<i16>> for FixedU16<U3>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU16<U1>
impl MixedNumConversion<Cartesian<i16>> for FixedU16<U1>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU16<U0>
impl MixedNumConversion<Cartesian<i16>> for FixedU16<U0>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U16>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U16>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U17>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U17>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U18>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U18>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U19>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U19>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U20>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U20>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U21>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U21>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U22>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U22>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U23>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U23>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U24>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U24>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U25>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U25>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U26>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U26>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U27>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U27>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U28>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U28>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U29>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U29>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U8>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U8>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U9>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U9>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U10>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U10>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U11>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U11>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U12>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U12>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U13>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U13>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U14>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U14>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U15>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U15>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U4>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U4>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U5>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U5>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U6>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U6>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U7>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U7>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U2>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U2>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U3>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U3>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U1>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U1>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU32<U0>
impl MixedNumConversion<Cartesian<i16>> for FixedU32<U0>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U32>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U32>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U33>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U33>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U34>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U34>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U35>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U35>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U36>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U36>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U37>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U37>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U38>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U38>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U39>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U39>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U40>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U40>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U41>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U41>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U42>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U42>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U43>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U43>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U44>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U44>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U45>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U45>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U46>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U46>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U47>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U47>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U48>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U48>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U49>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U49>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U50>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U50>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U51>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U51>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U52>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U52>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U53>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U53>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U54>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U54>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U55>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U55>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U56>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U56>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U57>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U57>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U58>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U58>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U59>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U59>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U60>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U60>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U61>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U61>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U16>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U16>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U17>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U17>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U18>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U18>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U19>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U19>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U20>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U20>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U21>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U21>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U22>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U22>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U23>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U23>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U24>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U24>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U25>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U25>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U26>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U26>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U27>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U27>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U28>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U28>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U29>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U29>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U30>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U30>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U31>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U31>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U8>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U8>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U9>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U9>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U10>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U10>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U11>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U11>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U12>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U12>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U13>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U13>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U14>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U14>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U15>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U15>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U4>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U4>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U5>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U5>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U6>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U6>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U7>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U7>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U2>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U2>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U3>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U3>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U1>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U1>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU64<U0>
impl MixedNumConversion<Cartesian<i16>> for FixedU64<U0>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU8<U4>
impl MixedNumConversion<Cartesian<i16>> for FixedU8<U4>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU8<U5>
impl MixedNumConversion<Cartesian<i16>> for FixedU8<U5>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU8<U2>
impl MixedNumConversion<Cartesian<i16>> for FixedU8<U2>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU8<U3>
impl MixedNumConversion<Cartesian<i16>> for FixedU8<U3>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU8<U1>
impl MixedNumConversion<Cartesian<i16>> for FixedU8<U1>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for FixedU8<U0>
impl MixedNumConversion<Cartesian<i16>> for FixedU8<U0>
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i16>> for f32
impl MixedNumConversion<Cartesian<i16>> for f32
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<i16>> for f64
impl MixedNumConversion<Cartesian<i16>> for f64
Source§fn mixed_from_num(number: Cartesian<i16>) -> Self
fn mixed_from_num(number: Cartesian<i16>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<i16>
fn mixed_to_num(&self) -> Cartesian<i16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<i32>> for FixedI16<U8>
impl MixedNumConversion<Cartesian<i32>> for FixedI16<U8>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI16<U9>
impl MixedNumConversion<Cartesian<i32>> for FixedI16<U9>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI16<U10>
impl MixedNumConversion<Cartesian<i32>> for FixedI16<U10>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI16<U11>
impl MixedNumConversion<Cartesian<i32>> for FixedI16<U11>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI16<U12>
impl MixedNumConversion<Cartesian<i32>> for FixedI16<U12>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI16<U13>
impl MixedNumConversion<Cartesian<i32>> for FixedI16<U13>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI16<U4>
impl MixedNumConversion<Cartesian<i32>> for FixedI16<U4>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI16<U5>
impl MixedNumConversion<Cartesian<i32>> for FixedI16<U5>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI16<U6>
impl MixedNumConversion<Cartesian<i32>> for FixedI16<U6>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI16<U7>
impl MixedNumConversion<Cartesian<i32>> for FixedI16<U7>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI16<U2>
impl MixedNumConversion<Cartesian<i32>> for FixedI16<U2>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI16<U3>
impl MixedNumConversion<Cartesian<i32>> for FixedI16<U3>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI16<U1>
impl MixedNumConversion<Cartesian<i32>> for FixedI16<U1>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI16<U0>
impl MixedNumConversion<Cartesian<i32>> for FixedI16<U0>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U16>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U16>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U17>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U17>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U18>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U18>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U19>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U19>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U20>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U20>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U21>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U21>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U22>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U22>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U23>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U23>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U24>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U24>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U25>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U25>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U26>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U26>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U27>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U27>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U28>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U28>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U29>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U29>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U8>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U8>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U9>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U9>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U10>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U10>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U11>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U11>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U12>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U12>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U13>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U13>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U14>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U14>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U15>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U15>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U4>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U4>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U5>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U5>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U6>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U6>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U7>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U7>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U2>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U2>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U3>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U3>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U1>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U1>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI32<U0>
impl MixedNumConversion<Cartesian<i32>> for FixedI32<U0>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U32>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U32>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U33>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U33>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U34>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U34>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U35>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U35>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U36>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U36>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U37>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U37>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U38>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U38>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U39>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U39>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U40>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U40>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U41>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U41>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U42>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U42>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U43>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U43>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U44>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U44>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U45>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U45>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U46>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U46>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U47>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U47>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U48>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U48>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U49>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U49>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U50>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U50>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U51>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U51>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U52>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U52>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U53>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U53>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U54>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U54>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U55>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U55>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U56>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U56>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U57>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U57>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U58>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U58>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U59>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U59>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U60>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U60>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U61>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U61>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U16>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U16>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U17>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U17>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U18>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U18>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U19>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U19>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U20>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U20>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U21>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U21>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U22>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U22>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U23>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U23>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U24>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U24>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U25>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U25>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U26>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U26>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U27>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U27>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U28>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U28>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U29>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U29>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U30>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U30>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U31>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U31>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U8>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U8>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U9>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U9>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U10>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U10>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U11>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U11>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U12>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U12>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U13>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U13>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U14>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U14>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U15>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U15>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U4>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U4>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U5>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U5>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U6>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U6>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U7>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U7>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U2>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U2>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U3>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U3>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U1>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U1>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI64<U0>
impl MixedNumConversion<Cartesian<i32>> for FixedI64<U0>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI8<U4>
impl MixedNumConversion<Cartesian<i32>> for FixedI8<U4>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI8<U5>
impl MixedNumConversion<Cartesian<i32>> for FixedI8<U5>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI8<U2>
impl MixedNumConversion<Cartesian<i32>> for FixedI8<U2>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI8<U3>
impl MixedNumConversion<Cartesian<i32>> for FixedI8<U3>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI8<U1>
impl MixedNumConversion<Cartesian<i32>> for FixedI8<U1>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedI8<U0>
impl MixedNumConversion<Cartesian<i32>> for FixedI8<U0>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU16<U8>
impl MixedNumConversion<Cartesian<i32>> for FixedU16<U8>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU16<U9>
impl MixedNumConversion<Cartesian<i32>> for FixedU16<U9>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU16<U10>
impl MixedNumConversion<Cartesian<i32>> for FixedU16<U10>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU16<U11>
impl MixedNumConversion<Cartesian<i32>> for FixedU16<U11>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU16<U12>
impl MixedNumConversion<Cartesian<i32>> for FixedU16<U12>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU16<U13>
impl MixedNumConversion<Cartesian<i32>> for FixedU16<U13>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU16<U4>
impl MixedNumConversion<Cartesian<i32>> for FixedU16<U4>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU16<U5>
impl MixedNumConversion<Cartesian<i32>> for FixedU16<U5>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU16<U6>
impl MixedNumConversion<Cartesian<i32>> for FixedU16<U6>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU16<U7>
impl MixedNumConversion<Cartesian<i32>> for FixedU16<U7>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU16<U2>
impl MixedNumConversion<Cartesian<i32>> for FixedU16<U2>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU16<U3>
impl MixedNumConversion<Cartesian<i32>> for FixedU16<U3>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU16<U1>
impl MixedNumConversion<Cartesian<i32>> for FixedU16<U1>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU16<U0>
impl MixedNumConversion<Cartesian<i32>> for FixedU16<U0>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U16>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U16>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U17>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U17>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U18>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U18>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U19>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U19>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U20>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U20>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U21>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U21>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U22>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U22>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U23>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U23>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U24>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U24>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U25>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U25>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U26>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U26>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U27>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U27>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U28>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U28>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U29>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U29>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U8>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U8>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U9>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U9>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U10>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U10>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U11>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U11>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U12>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U12>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U13>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U13>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U14>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U14>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U15>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U15>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U4>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U4>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U5>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U5>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U6>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U6>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U7>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U7>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U2>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U2>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U3>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U3>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U1>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U1>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU32<U0>
impl MixedNumConversion<Cartesian<i32>> for FixedU32<U0>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U32>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U32>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U33>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U33>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U34>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U34>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U35>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U35>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U36>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U36>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U37>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U37>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U38>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U38>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U39>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U39>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U40>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U40>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U41>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U41>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U42>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U42>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U43>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U43>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U44>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U44>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U45>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U45>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U46>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U46>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U47>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U47>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U48>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U48>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U49>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U49>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U50>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U50>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U51>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U51>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U52>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U52>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U53>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U53>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U54>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U54>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U55>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U55>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U56>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U56>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U57>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U57>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U58>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U58>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U59>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U59>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U60>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U60>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U61>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U61>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U16>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U16>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U17>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U17>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U18>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U18>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U19>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U19>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U20>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U20>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U21>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U21>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U22>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U22>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U23>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U23>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U24>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U24>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U25>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U25>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U26>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U26>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U27>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U27>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U28>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U28>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U29>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U29>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U30>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U30>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U31>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U31>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U8>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U8>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U9>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U9>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U10>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U10>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U11>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U11>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U12>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U12>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U13>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U13>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U14>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U14>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U15>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U15>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U4>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U4>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U5>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U5>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U6>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U6>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U7>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U7>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U2>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U2>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U3>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U3>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U1>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U1>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU64<U0>
impl MixedNumConversion<Cartesian<i32>> for FixedU64<U0>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU8<U4>
impl MixedNumConversion<Cartesian<i32>> for FixedU8<U4>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU8<U5>
impl MixedNumConversion<Cartesian<i32>> for FixedU8<U5>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU8<U2>
impl MixedNumConversion<Cartesian<i32>> for FixedU8<U2>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU8<U3>
impl MixedNumConversion<Cartesian<i32>> for FixedU8<U3>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU8<U1>
impl MixedNumConversion<Cartesian<i32>> for FixedU8<U1>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for FixedU8<U0>
impl MixedNumConversion<Cartesian<i32>> for FixedU8<U0>
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i32>> for f32
impl MixedNumConversion<Cartesian<i32>> for f32
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<i32>> for f64
impl MixedNumConversion<Cartesian<i32>> for f64
Source§fn mixed_from_num(number: Cartesian<i32>) -> Self
fn mixed_from_num(number: Cartesian<i32>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<i32>
fn mixed_to_num(&self) -> Cartesian<i32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<i64>> for FixedI16<U8>
impl MixedNumConversion<Cartesian<i64>> for FixedI16<U8>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI16<U9>
impl MixedNumConversion<Cartesian<i64>> for FixedI16<U9>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI16<U10>
impl MixedNumConversion<Cartesian<i64>> for FixedI16<U10>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI16<U11>
impl MixedNumConversion<Cartesian<i64>> for FixedI16<U11>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI16<U12>
impl MixedNumConversion<Cartesian<i64>> for FixedI16<U12>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI16<U13>
impl MixedNumConversion<Cartesian<i64>> for FixedI16<U13>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI16<U4>
impl MixedNumConversion<Cartesian<i64>> for FixedI16<U4>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI16<U5>
impl MixedNumConversion<Cartesian<i64>> for FixedI16<U5>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI16<U6>
impl MixedNumConversion<Cartesian<i64>> for FixedI16<U6>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI16<U7>
impl MixedNumConversion<Cartesian<i64>> for FixedI16<U7>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI16<U2>
impl MixedNumConversion<Cartesian<i64>> for FixedI16<U2>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI16<U3>
impl MixedNumConversion<Cartesian<i64>> for FixedI16<U3>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI16<U1>
impl MixedNumConversion<Cartesian<i64>> for FixedI16<U1>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI16<U0>
impl MixedNumConversion<Cartesian<i64>> for FixedI16<U0>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U16>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U16>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U17>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U17>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U18>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U18>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U19>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U19>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U20>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U20>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U21>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U21>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U22>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U22>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U23>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U23>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U24>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U24>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U25>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U25>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U26>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U26>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U27>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U27>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U28>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U28>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U29>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U29>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U8>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U8>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U9>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U9>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U10>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U10>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U11>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U11>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U12>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U12>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U13>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U13>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U14>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U14>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U15>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U15>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U4>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U4>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U5>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U5>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U6>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U6>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U7>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U7>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U2>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U2>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U3>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U3>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U1>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U1>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI32<U0>
impl MixedNumConversion<Cartesian<i64>> for FixedI32<U0>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U32>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U32>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U33>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U33>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U34>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U34>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U35>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U35>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U36>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U36>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U37>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U37>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U38>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U38>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U39>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U39>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U40>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U40>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U41>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U41>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U42>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U42>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U43>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U43>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U44>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U44>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U45>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U45>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U46>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U46>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U47>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U47>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U48>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U48>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U49>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U49>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U50>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U50>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U51>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U51>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U52>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U52>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U53>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U53>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U54>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U54>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U55>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U55>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U56>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U56>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U57>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U57>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U58>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U58>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U59>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U59>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U60>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U60>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U61>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U61>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U16>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U16>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U17>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U17>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U18>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U18>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U19>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U19>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U20>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U20>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U21>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U21>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U22>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U22>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U23>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U23>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U24>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U24>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U25>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U25>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U26>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U26>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U27>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U27>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U28>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U28>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U29>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U29>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U30>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U30>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U31>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U31>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U8>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U8>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U9>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U9>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U10>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U10>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U11>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U11>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U12>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U12>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U13>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U13>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U14>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U14>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U15>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U15>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U4>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U4>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U5>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U5>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U6>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U6>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U7>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U7>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U2>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U2>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U3>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U3>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U1>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U1>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI64<U0>
impl MixedNumConversion<Cartesian<i64>> for FixedI64<U0>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI8<U4>
impl MixedNumConversion<Cartesian<i64>> for FixedI8<U4>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI8<U5>
impl MixedNumConversion<Cartesian<i64>> for FixedI8<U5>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI8<U2>
impl MixedNumConversion<Cartesian<i64>> for FixedI8<U2>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI8<U3>
impl MixedNumConversion<Cartesian<i64>> for FixedI8<U3>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI8<U1>
impl MixedNumConversion<Cartesian<i64>> for FixedI8<U1>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedI8<U0>
impl MixedNumConversion<Cartesian<i64>> for FixedI8<U0>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU16<U8>
impl MixedNumConversion<Cartesian<i64>> for FixedU16<U8>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU16<U9>
impl MixedNumConversion<Cartesian<i64>> for FixedU16<U9>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU16<U10>
impl MixedNumConversion<Cartesian<i64>> for FixedU16<U10>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU16<U11>
impl MixedNumConversion<Cartesian<i64>> for FixedU16<U11>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU16<U12>
impl MixedNumConversion<Cartesian<i64>> for FixedU16<U12>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU16<U13>
impl MixedNumConversion<Cartesian<i64>> for FixedU16<U13>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU16<U4>
impl MixedNumConversion<Cartesian<i64>> for FixedU16<U4>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU16<U5>
impl MixedNumConversion<Cartesian<i64>> for FixedU16<U5>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU16<U6>
impl MixedNumConversion<Cartesian<i64>> for FixedU16<U6>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU16<U7>
impl MixedNumConversion<Cartesian<i64>> for FixedU16<U7>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU16<U2>
impl MixedNumConversion<Cartesian<i64>> for FixedU16<U2>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU16<U3>
impl MixedNumConversion<Cartesian<i64>> for FixedU16<U3>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU16<U1>
impl MixedNumConversion<Cartesian<i64>> for FixedU16<U1>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU16<U0>
impl MixedNumConversion<Cartesian<i64>> for FixedU16<U0>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U16>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U16>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U17>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U17>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U18>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U18>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U19>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U19>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U20>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U20>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U21>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U21>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U22>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U22>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U23>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U23>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U24>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U24>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U25>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U25>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U26>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U26>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U27>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U27>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U28>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U28>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U29>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U29>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U8>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U8>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U9>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U9>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U10>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U10>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U11>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U11>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U12>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U12>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U13>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U13>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U14>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U14>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U15>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U15>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U4>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U4>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U5>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U5>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U6>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U6>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U7>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U7>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U2>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U2>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U3>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U3>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U1>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U1>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU32<U0>
impl MixedNumConversion<Cartesian<i64>> for FixedU32<U0>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U32>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U32>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U33>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U33>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U34>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U34>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U35>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U35>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U36>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U36>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U37>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U37>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U38>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U38>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U39>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U39>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U40>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U40>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U41>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U41>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U42>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U42>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U43>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U43>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U44>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U44>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U45>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U45>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U46>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U46>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U47>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U47>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U48>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U48>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U49>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U49>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U50>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U50>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U51>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U51>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U52>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U52>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U53>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U53>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U54>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U54>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U55>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U55>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U56>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U56>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U57>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U57>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U58>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U58>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U59>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U59>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U60>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U60>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U61>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U61>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U16>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U16>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U17>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U17>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U18>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U18>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U19>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U19>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U20>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U20>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U21>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U21>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U22>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U22>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U23>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U23>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U24>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U24>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U25>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U25>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U26>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U26>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U27>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U27>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U28>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U28>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U29>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U29>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U30>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U30>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U31>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U31>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U8>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U8>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U9>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U9>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U10>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U10>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U11>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U11>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U12>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U12>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U13>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U13>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U14>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U14>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U15>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U15>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U4>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U4>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U5>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U5>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U6>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U6>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U7>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U7>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U2>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U2>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U3>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U3>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U1>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U1>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU64<U0>
impl MixedNumConversion<Cartesian<i64>> for FixedU64<U0>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU8<U4>
impl MixedNumConversion<Cartesian<i64>> for FixedU8<U4>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU8<U5>
impl MixedNumConversion<Cartesian<i64>> for FixedU8<U5>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU8<U2>
impl MixedNumConversion<Cartesian<i64>> for FixedU8<U2>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU8<U3>
impl MixedNumConversion<Cartesian<i64>> for FixedU8<U3>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU8<U1>
impl MixedNumConversion<Cartesian<i64>> for FixedU8<U1>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for FixedU8<U0>
impl MixedNumConversion<Cartesian<i64>> for FixedU8<U0>
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i64>> for f32
impl MixedNumConversion<Cartesian<i64>> for f32
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<i64>> for f64
impl MixedNumConversion<Cartesian<i64>> for f64
Source§fn mixed_from_num(number: Cartesian<i64>) -> Self
fn mixed_from_num(number: Cartesian<i64>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<i64>
fn mixed_to_num(&self) -> Cartesian<i64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<i8>> for FixedI16<U8>
impl MixedNumConversion<Cartesian<i8>> for FixedI16<U8>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI16<U9>
impl MixedNumConversion<Cartesian<i8>> for FixedI16<U9>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI16<U10>
impl MixedNumConversion<Cartesian<i8>> for FixedI16<U10>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI16<U11>
impl MixedNumConversion<Cartesian<i8>> for FixedI16<U11>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI16<U12>
impl MixedNumConversion<Cartesian<i8>> for FixedI16<U12>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI16<U13>
impl MixedNumConversion<Cartesian<i8>> for FixedI16<U13>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI16<U4>
impl MixedNumConversion<Cartesian<i8>> for FixedI16<U4>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI16<U5>
impl MixedNumConversion<Cartesian<i8>> for FixedI16<U5>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI16<U6>
impl MixedNumConversion<Cartesian<i8>> for FixedI16<U6>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI16<U7>
impl MixedNumConversion<Cartesian<i8>> for FixedI16<U7>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI16<U2>
impl MixedNumConversion<Cartesian<i8>> for FixedI16<U2>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI16<U3>
impl MixedNumConversion<Cartesian<i8>> for FixedI16<U3>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI16<U1>
impl MixedNumConversion<Cartesian<i8>> for FixedI16<U1>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI16<U0>
impl MixedNumConversion<Cartesian<i8>> for FixedI16<U0>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U16>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U16>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U17>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U17>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U18>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U18>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U19>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U19>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U20>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U20>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U21>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U21>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U22>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U22>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U23>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U23>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U24>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U24>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U25>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U25>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U26>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U26>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U27>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U27>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U28>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U28>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U29>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U29>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U8>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U8>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U9>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U9>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U10>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U10>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U11>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U11>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U12>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U12>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U13>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U13>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U14>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U14>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U15>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U15>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U4>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U4>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U5>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U5>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U6>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U6>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U7>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U7>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U2>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U2>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U3>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U3>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U1>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U1>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI32<U0>
impl MixedNumConversion<Cartesian<i8>> for FixedI32<U0>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U32>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U32>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U33>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U33>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U34>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U34>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U35>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U35>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U36>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U36>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U37>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U37>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U38>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U38>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U39>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U39>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U40>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U40>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U41>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U41>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U42>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U42>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U43>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U43>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U44>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U44>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U45>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U45>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U46>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U46>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U47>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U47>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U48>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U48>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U49>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U49>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U50>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U50>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U51>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U51>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U52>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U52>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U53>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U53>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U54>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U54>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U55>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U55>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U56>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U56>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U57>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U57>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U58>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U58>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U59>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U59>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U60>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U60>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U61>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U61>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U16>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U16>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U17>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U17>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U18>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U18>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U19>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U19>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U20>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U20>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U21>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U21>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U22>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U22>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U23>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U23>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U24>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U24>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U25>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U25>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U26>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U26>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U27>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U27>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U28>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U28>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U29>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U29>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U30>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U30>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U31>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U31>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U8>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U8>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U9>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U9>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U10>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U10>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U11>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U11>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U12>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U12>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U13>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U13>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U14>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U14>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U15>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U15>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U4>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U4>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U5>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U5>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U6>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U6>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U7>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U7>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U2>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U2>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U3>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U3>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U1>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U1>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI64<U0>
impl MixedNumConversion<Cartesian<i8>> for FixedI64<U0>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI8<U4>
impl MixedNumConversion<Cartesian<i8>> for FixedI8<U4>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI8<U5>
impl MixedNumConversion<Cartesian<i8>> for FixedI8<U5>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI8<U2>
impl MixedNumConversion<Cartesian<i8>> for FixedI8<U2>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI8<U3>
impl MixedNumConversion<Cartesian<i8>> for FixedI8<U3>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI8<U1>
impl MixedNumConversion<Cartesian<i8>> for FixedI8<U1>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedI8<U0>
impl MixedNumConversion<Cartesian<i8>> for FixedI8<U0>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU16<U8>
impl MixedNumConversion<Cartesian<i8>> for FixedU16<U8>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU16<U9>
impl MixedNumConversion<Cartesian<i8>> for FixedU16<U9>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU16<U10>
impl MixedNumConversion<Cartesian<i8>> for FixedU16<U10>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU16<U11>
impl MixedNumConversion<Cartesian<i8>> for FixedU16<U11>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU16<U12>
impl MixedNumConversion<Cartesian<i8>> for FixedU16<U12>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU16<U13>
impl MixedNumConversion<Cartesian<i8>> for FixedU16<U13>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU16<U4>
impl MixedNumConversion<Cartesian<i8>> for FixedU16<U4>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU16<U5>
impl MixedNumConversion<Cartesian<i8>> for FixedU16<U5>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU16<U6>
impl MixedNumConversion<Cartesian<i8>> for FixedU16<U6>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU16<U7>
impl MixedNumConversion<Cartesian<i8>> for FixedU16<U7>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU16<U2>
impl MixedNumConversion<Cartesian<i8>> for FixedU16<U2>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU16<U3>
impl MixedNumConversion<Cartesian<i8>> for FixedU16<U3>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU16<U1>
impl MixedNumConversion<Cartesian<i8>> for FixedU16<U1>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU16<U0>
impl MixedNumConversion<Cartesian<i8>> for FixedU16<U0>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U16>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U16>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U17>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U17>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U18>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U18>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U19>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U19>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U20>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U20>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U21>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U21>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U22>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U22>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U23>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U23>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U24>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U24>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U25>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U25>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U26>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U26>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U27>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U27>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U28>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U28>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U29>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U29>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U8>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U8>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U9>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U9>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U10>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U10>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U11>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U11>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U12>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U12>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U13>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U13>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U14>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U14>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U15>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U15>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U4>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U4>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U5>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U5>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U6>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U6>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U7>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U7>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U2>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U2>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U3>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U3>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U1>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U1>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU32<U0>
impl MixedNumConversion<Cartesian<i8>> for FixedU32<U0>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U32>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U32>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U33>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U33>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U34>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U34>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U35>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U35>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U36>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U36>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U37>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U37>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U38>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U38>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U39>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U39>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U40>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U40>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U41>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U41>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U42>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U42>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U43>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U43>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U44>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U44>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U45>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U45>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U46>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U46>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U47>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U47>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U48>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U48>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U49>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U49>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U50>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U50>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U51>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U51>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U52>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U52>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U53>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U53>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U54>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U54>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U55>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U55>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U56>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U56>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U57>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U57>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U58>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U58>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U59>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U59>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U60>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U60>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U61>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U61>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U16>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U16>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U17>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U17>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U18>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U18>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U19>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U19>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U20>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U20>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U21>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U21>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U22>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U22>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U23>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U23>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U24>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U24>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U25>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U25>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U26>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U26>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U27>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U27>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U28>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U28>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U29>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U29>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U30>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U30>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U31>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U31>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U8>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U8>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U9>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U9>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U10>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U10>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U11>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U11>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U12>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U12>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U13>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U13>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U14>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U14>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U15>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U15>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U4>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U4>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U5>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U5>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U6>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U6>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U7>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U7>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U2>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U2>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U3>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U3>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U1>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U1>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU64<U0>
impl MixedNumConversion<Cartesian<i8>> for FixedU64<U0>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU8<U4>
impl MixedNumConversion<Cartesian<i8>> for FixedU8<U4>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU8<U5>
impl MixedNumConversion<Cartesian<i8>> for FixedU8<U5>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU8<U2>
impl MixedNumConversion<Cartesian<i8>> for FixedU8<U2>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU8<U3>
impl MixedNumConversion<Cartesian<i8>> for FixedU8<U3>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU8<U1>
impl MixedNumConversion<Cartesian<i8>> for FixedU8<U1>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for FixedU8<U0>
impl MixedNumConversion<Cartesian<i8>> for FixedU8<U0>
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<i8>> for f32
impl MixedNumConversion<Cartesian<i8>> for f32
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<i8>> for f64
impl MixedNumConversion<Cartesian<i8>> for f64
Source§fn mixed_from_num(number: Cartesian<i8>) -> Self
fn mixed_from_num(number: Cartesian<i8>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<i8>
fn mixed_to_num(&self) -> Cartesian<i8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<isize>> for FixedI16<U8>
impl MixedNumConversion<Cartesian<isize>> for FixedI16<U8>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI16<U9>
impl MixedNumConversion<Cartesian<isize>> for FixedI16<U9>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI16<U10>
impl MixedNumConversion<Cartesian<isize>> for FixedI16<U10>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI16<U11>
impl MixedNumConversion<Cartesian<isize>> for FixedI16<U11>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI16<U12>
impl MixedNumConversion<Cartesian<isize>> for FixedI16<U12>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI16<U13>
impl MixedNumConversion<Cartesian<isize>> for FixedI16<U13>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI16<U4>
impl MixedNumConversion<Cartesian<isize>> for FixedI16<U4>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI16<U5>
impl MixedNumConversion<Cartesian<isize>> for FixedI16<U5>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI16<U6>
impl MixedNumConversion<Cartesian<isize>> for FixedI16<U6>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI16<U7>
impl MixedNumConversion<Cartesian<isize>> for FixedI16<U7>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI16<U2>
impl MixedNumConversion<Cartesian<isize>> for FixedI16<U2>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI16<U3>
impl MixedNumConversion<Cartesian<isize>> for FixedI16<U3>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI16<U1>
impl MixedNumConversion<Cartesian<isize>> for FixedI16<U1>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI16<U0>
impl MixedNumConversion<Cartesian<isize>> for FixedI16<U0>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U16>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U16>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U17>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U17>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U18>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U18>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U19>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U19>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U20>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U20>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U21>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U21>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U22>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U22>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U23>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U23>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U24>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U24>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U25>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U25>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U26>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U26>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U27>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U27>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U28>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U28>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U29>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U29>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U8>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U8>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U9>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U9>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U10>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U10>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U11>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U11>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U12>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U12>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U13>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U13>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U14>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U14>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U15>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U15>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U4>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U4>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U5>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U5>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U6>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U6>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U7>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U7>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U2>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U2>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U3>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U3>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U1>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U1>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI32<U0>
impl MixedNumConversion<Cartesian<isize>> for FixedI32<U0>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U32>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U32>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U33>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U33>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U34>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U34>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U35>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U35>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U36>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U36>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U37>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U37>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U38>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U38>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U39>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U39>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U40>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U40>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U41>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U41>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U42>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U42>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U43>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U43>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U44>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U44>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U45>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U45>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U46>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U46>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U47>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U47>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U48>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U48>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U49>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U49>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U50>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U50>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U51>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U51>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U52>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U52>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U53>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U53>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U54>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U54>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U55>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U55>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U56>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U56>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U57>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U57>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U58>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U58>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U59>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U59>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U60>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U60>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U61>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U61>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U16>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U16>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U17>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U17>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U18>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U18>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U19>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U19>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U20>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U20>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U21>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U21>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U22>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U22>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U23>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U23>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U24>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U24>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U25>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U25>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U26>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U26>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U27>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U27>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U28>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U28>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U29>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U29>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U30>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U30>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U31>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U31>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U8>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U8>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U9>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U9>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U10>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U10>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U11>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U11>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U12>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U12>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U13>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U13>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U14>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U14>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U15>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U15>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U4>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U4>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U5>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U5>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U6>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U6>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U7>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U7>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U2>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U2>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U3>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U3>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U1>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U1>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI64<U0>
impl MixedNumConversion<Cartesian<isize>> for FixedI64<U0>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI8<U4>
impl MixedNumConversion<Cartesian<isize>> for FixedI8<U4>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI8<U5>
impl MixedNumConversion<Cartesian<isize>> for FixedI8<U5>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI8<U2>
impl MixedNumConversion<Cartesian<isize>> for FixedI8<U2>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI8<U3>
impl MixedNumConversion<Cartesian<isize>> for FixedI8<U3>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI8<U1>
impl MixedNumConversion<Cartesian<isize>> for FixedI8<U1>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedI8<U0>
impl MixedNumConversion<Cartesian<isize>> for FixedI8<U0>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU16<U8>
impl MixedNumConversion<Cartesian<isize>> for FixedU16<U8>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU16<U9>
impl MixedNumConversion<Cartesian<isize>> for FixedU16<U9>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU16<U10>
impl MixedNumConversion<Cartesian<isize>> for FixedU16<U10>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU16<U11>
impl MixedNumConversion<Cartesian<isize>> for FixedU16<U11>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU16<U12>
impl MixedNumConversion<Cartesian<isize>> for FixedU16<U12>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU16<U13>
impl MixedNumConversion<Cartesian<isize>> for FixedU16<U13>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU16<U4>
impl MixedNumConversion<Cartesian<isize>> for FixedU16<U4>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU16<U5>
impl MixedNumConversion<Cartesian<isize>> for FixedU16<U5>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU16<U6>
impl MixedNumConversion<Cartesian<isize>> for FixedU16<U6>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU16<U7>
impl MixedNumConversion<Cartesian<isize>> for FixedU16<U7>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU16<U2>
impl MixedNumConversion<Cartesian<isize>> for FixedU16<U2>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU16<U3>
impl MixedNumConversion<Cartesian<isize>> for FixedU16<U3>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU16<U1>
impl MixedNumConversion<Cartesian<isize>> for FixedU16<U1>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU16<U0>
impl MixedNumConversion<Cartesian<isize>> for FixedU16<U0>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U16>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U16>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U17>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U17>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U18>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U18>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U19>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U19>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U20>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U20>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U21>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U21>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U22>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U22>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U23>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U23>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U24>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U24>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U25>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U25>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U26>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U26>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U27>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U27>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U28>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U28>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U29>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U29>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U8>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U8>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U9>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U9>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U10>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U10>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U11>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U11>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U12>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U12>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U13>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U13>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U14>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U14>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U15>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U15>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U4>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U4>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U5>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U5>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U6>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U6>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U7>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U7>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U2>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U2>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U3>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U3>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U1>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U1>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU32<U0>
impl MixedNumConversion<Cartesian<isize>> for FixedU32<U0>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U32>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U32>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U33>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U33>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U34>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U34>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U35>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U35>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U36>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U36>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U37>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U37>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U38>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U38>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U39>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U39>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U40>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U40>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U41>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U41>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U42>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U42>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U43>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U43>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U44>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U44>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U45>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U45>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U46>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U46>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U47>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U47>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U48>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U48>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U49>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U49>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U50>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U50>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U51>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U51>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U52>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U52>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U53>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U53>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U54>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U54>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U55>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U55>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U56>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U56>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U57>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U57>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U58>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U58>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U59>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U59>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U60>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U60>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U61>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U61>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U16>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U16>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U17>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U17>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U18>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U18>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U19>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U19>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U20>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U20>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U21>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U21>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U22>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U22>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U23>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U23>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U24>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U24>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U25>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U25>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U26>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U26>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U27>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U27>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U28>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U28>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U29>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U29>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U30>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U30>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U31>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U31>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U8>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U8>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U9>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U9>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U10>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U10>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U11>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U11>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U12>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U12>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U13>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U13>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U14>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U14>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U15>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U15>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U4>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U4>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U5>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U5>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U6>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U6>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U7>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U7>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U2>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U2>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U3>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U3>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U1>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U1>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU64<U0>
impl MixedNumConversion<Cartesian<isize>> for FixedU64<U0>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU8<U4>
impl MixedNumConversion<Cartesian<isize>> for FixedU8<U4>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU8<U5>
impl MixedNumConversion<Cartesian<isize>> for FixedU8<U5>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU8<U2>
impl MixedNumConversion<Cartesian<isize>> for FixedU8<U2>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU8<U3>
impl MixedNumConversion<Cartesian<isize>> for FixedU8<U3>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU8<U1>
impl MixedNumConversion<Cartesian<isize>> for FixedU8<U1>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for FixedU8<U0>
impl MixedNumConversion<Cartesian<isize>> for FixedU8<U0>
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<isize>> for f32
impl MixedNumConversion<Cartesian<isize>> for f32
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<isize>> for f64
impl MixedNumConversion<Cartesian<isize>> for f64
Source§fn mixed_from_num(number: Cartesian<isize>) -> Self
fn mixed_from_num(number: Cartesian<isize>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<isize>
fn mixed_to_num(&self) -> Cartesian<isize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<u128>> for FixedI16<U8>
impl MixedNumConversion<Cartesian<u128>> for FixedI16<U8>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI16<U9>
impl MixedNumConversion<Cartesian<u128>> for FixedI16<U9>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI16<U10>
impl MixedNumConversion<Cartesian<u128>> for FixedI16<U10>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI16<U11>
impl MixedNumConversion<Cartesian<u128>> for FixedI16<U11>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI16<U12>
impl MixedNumConversion<Cartesian<u128>> for FixedI16<U12>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI16<U13>
impl MixedNumConversion<Cartesian<u128>> for FixedI16<U13>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI16<U4>
impl MixedNumConversion<Cartesian<u128>> for FixedI16<U4>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI16<U5>
impl MixedNumConversion<Cartesian<u128>> for FixedI16<U5>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI16<U6>
impl MixedNumConversion<Cartesian<u128>> for FixedI16<U6>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI16<U7>
impl MixedNumConversion<Cartesian<u128>> for FixedI16<U7>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI16<U2>
impl MixedNumConversion<Cartesian<u128>> for FixedI16<U2>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI16<U3>
impl MixedNumConversion<Cartesian<u128>> for FixedI16<U3>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI16<U1>
impl MixedNumConversion<Cartesian<u128>> for FixedI16<U1>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI16<U0>
impl MixedNumConversion<Cartesian<u128>> for FixedI16<U0>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U16>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U16>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U17>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U17>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U18>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U18>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U19>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U19>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U20>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U20>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U21>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U21>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U22>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U22>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U23>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U23>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U24>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U24>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U25>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U25>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U26>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U26>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U27>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U27>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U28>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U28>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U29>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U29>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U8>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U8>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U9>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U9>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U10>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U10>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U11>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U11>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U12>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U12>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U13>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U13>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U14>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U14>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U15>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U15>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U4>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U4>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U5>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U5>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U6>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U6>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U7>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U7>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U2>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U2>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U3>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U3>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U1>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U1>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI32<U0>
impl MixedNumConversion<Cartesian<u128>> for FixedI32<U0>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U32>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U32>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U33>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U33>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U34>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U34>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U35>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U35>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U36>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U36>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U37>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U37>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U38>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U38>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U39>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U39>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U40>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U40>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U41>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U41>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U42>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U42>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U43>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U43>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U44>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U44>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U45>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U45>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U46>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U46>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U47>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U47>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U48>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U48>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U49>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U49>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U50>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U50>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U51>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U51>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U52>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U52>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U53>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U53>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U54>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U54>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U55>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U55>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U56>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U56>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U57>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U57>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U58>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U58>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U59>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U59>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U60>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U60>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U61>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U61>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U16>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U16>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U17>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U17>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U18>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U18>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U19>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U19>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U20>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U20>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U21>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U21>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U22>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U22>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U23>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U23>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U24>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U24>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U25>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U25>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U26>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U26>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U27>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U27>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U28>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U28>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U29>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U29>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U30>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U30>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U31>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U31>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U8>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U8>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U9>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U9>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U10>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U10>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U11>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U11>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U12>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U12>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U13>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U13>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U14>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U14>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U15>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U15>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U4>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U4>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U5>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U5>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U6>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U6>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U7>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U7>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U2>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U2>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U3>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U3>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U1>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U1>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI64<U0>
impl MixedNumConversion<Cartesian<u128>> for FixedI64<U0>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI8<U4>
impl MixedNumConversion<Cartesian<u128>> for FixedI8<U4>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI8<U5>
impl MixedNumConversion<Cartesian<u128>> for FixedI8<U5>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI8<U2>
impl MixedNumConversion<Cartesian<u128>> for FixedI8<U2>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI8<U3>
impl MixedNumConversion<Cartesian<u128>> for FixedI8<U3>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI8<U1>
impl MixedNumConversion<Cartesian<u128>> for FixedI8<U1>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedI8<U0>
impl MixedNumConversion<Cartesian<u128>> for FixedI8<U0>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU16<U8>
impl MixedNumConversion<Cartesian<u128>> for FixedU16<U8>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU16<U9>
impl MixedNumConversion<Cartesian<u128>> for FixedU16<U9>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU16<U10>
impl MixedNumConversion<Cartesian<u128>> for FixedU16<U10>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU16<U11>
impl MixedNumConversion<Cartesian<u128>> for FixedU16<U11>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU16<U12>
impl MixedNumConversion<Cartesian<u128>> for FixedU16<U12>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU16<U13>
impl MixedNumConversion<Cartesian<u128>> for FixedU16<U13>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU16<U4>
impl MixedNumConversion<Cartesian<u128>> for FixedU16<U4>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU16<U5>
impl MixedNumConversion<Cartesian<u128>> for FixedU16<U5>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU16<U6>
impl MixedNumConversion<Cartesian<u128>> for FixedU16<U6>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU16<U7>
impl MixedNumConversion<Cartesian<u128>> for FixedU16<U7>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU16<U2>
impl MixedNumConversion<Cartesian<u128>> for FixedU16<U2>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU16<U3>
impl MixedNumConversion<Cartesian<u128>> for FixedU16<U3>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU16<U1>
impl MixedNumConversion<Cartesian<u128>> for FixedU16<U1>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU16<U0>
impl MixedNumConversion<Cartesian<u128>> for FixedU16<U0>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U16>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U16>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U17>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U17>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U18>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U18>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U19>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U19>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U20>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U20>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U21>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U21>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U22>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U22>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U23>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U23>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U24>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U24>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U25>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U25>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U26>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U26>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U27>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U27>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U28>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U28>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U29>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U29>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U8>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U8>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U9>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U9>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U10>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U10>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U11>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U11>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U12>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U12>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U13>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U13>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U14>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U14>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U15>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U15>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U4>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U4>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U5>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U5>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U6>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U6>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U7>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U7>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U2>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U2>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U3>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U3>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U1>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U1>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU32<U0>
impl MixedNumConversion<Cartesian<u128>> for FixedU32<U0>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U32>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U32>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U33>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U33>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U34>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U34>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U35>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U35>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U36>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U36>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U37>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U37>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U38>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U38>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U39>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U39>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U40>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U40>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U41>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U41>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U42>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U42>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U43>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U43>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U44>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U44>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U45>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U45>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U46>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U46>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U47>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U47>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U48>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U48>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U49>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U49>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U50>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U50>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U51>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U51>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U52>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U52>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U53>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U53>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U54>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U54>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U55>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U55>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U56>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U56>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U57>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U57>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U58>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U58>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U59>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U59>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U60>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U60>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U61>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U61>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U16>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U16>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U17>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U17>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U18>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U18>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U19>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U19>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U20>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U20>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U21>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U21>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U22>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U22>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U23>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U23>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U24>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U24>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U25>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U25>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U26>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U26>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U27>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U27>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U28>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U28>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U29>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U29>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U30>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U30>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U31>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U31>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U8>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U8>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U9>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U9>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U10>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U10>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U11>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U11>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U12>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U12>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U13>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U13>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U14>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U14>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U15>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U15>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U4>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U4>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U5>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U5>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U6>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U6>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U7>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U7>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U2>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U2>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U3>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U3>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U1>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U1>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU64<U0>
impl MixedNumConversion<Cartesian<u128>> for FixedU64<U0>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU8<U4>
impl MixedNumConversion<Cartesian<u128>> for FixedU8<U4>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU8<U5>
impl MixedNumConversion<Cartesian<u128>> for FixedU8<U5>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU8<U2>
impl MixedNumConversion<Cartesian<u128>> for FixedU8<U2>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU8<U3>
impl MixedNumConversion<Cartesian<u128>> for FixedU8<U3>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU8<U1>
impl MixedNumConversion<Cartesian<u128>> for FixedU8<U1>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for FixedU8<U0>
impl MixedNumConversion<Cartesian<u128>> for FixedU8<U0>
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u128>> for f32
impl MixedNumConversion<Cartesian<u128>> for f32
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<u128>> for f64
impl MixedNumConversion<Cartesian<u128>> for f64
Source§fn mixed_from_num(number: Cartesian<u128>) -> Self
fn mixed_from_num(number: Cartesian<u128>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<u128>
fn mixed_to_num(&self) -> Cartesian<u128>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<u16>> for FixedI16<U8>
impl MixedNumConversion<Cartesian<u16>> for FixedI16<U8>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI16<U9>
impl MixedNumConversion<Cartesian<u16>> for FixedI16<U9>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI16<U10>
impl MixedNumConversion<Cartesian<u16>> for FixedI16<U10>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI16<U11>
impl MixedNumConversion<Cartesian<u16>> for FixedI16<U11>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI16<U12>
impl MixedNumConversion<Cartesian<u16>> for FixedI16<U12>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI16<U13>
impl MixedNumConversion<Cartesian<u16>> for FixedI16<U13>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI16<U4>
impl MixedNumConversion<Cartesian<u16>> for FixedI16<U4>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI16<U5>
impl MixedNumConversion<Cartesian<u16>> for FixedI16<U5>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI16<U6>
impl MixedNumConversion<Cartesian<u16>> for FixedI16<U6>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI16<U7>
impl MixedNumConversion<Cartesian<u16>> for FixedI16<U7>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI16<U2>
impl MixedNumConversion<Cartesian<u16>> for FixedI16<U2>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI16<U3>
impl MixedNumConversion<Cartesian<u16>> for FixedI16<U3>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI16<U1>
impl MixedNumConversion<Cartesian<u16>> for FixedI16<U1>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI16<U0>
impl MixedNumConversion<Cartesian<u16>> for FixedI16<U0>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U16>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U16>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U17>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U17>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U18>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U18>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U19>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U19>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U20>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U20>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U21>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U21>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U22>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U22>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U23>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U23>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U24>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U24>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U25>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U25>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U26>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U26>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U27>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U27>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U28>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U28>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U29>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U29>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U8>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U8>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U9>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U9>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U10>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U10>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U11>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U11>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U12>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U12>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U13>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U13>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U14>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U14>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U15>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U15>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U4>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U4>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U5>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U5>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U6>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U6>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U7>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U7>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U2>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U2>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U3>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U3>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U1>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U1>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI32<U0>
impl MixedNumConversion<Cartesian<u16>> for FixedI32<U0>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U32>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U32>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U33>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U33>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U34>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U34>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U35>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U35>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U36>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U36>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U37>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U37>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U38>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U38>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U39>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U39>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U40>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U40>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U41>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U41>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U42>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U42>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U43>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U43>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U44>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U44>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U45>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U45>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U46>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U46>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U47>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U47>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U48>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U48>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U49>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U49>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U50>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U50>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U51>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U51>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U52>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U52>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U53>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U53>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U54>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U54>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U55>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U55>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U56>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U56>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U57>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U57>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U58>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U58>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U59>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U59>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U60>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U60>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U61>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U61>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U16>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U16>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U17>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U17>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U18>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U18>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U19>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U19>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U20>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U20>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U21>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U21>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U22>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U22>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U23>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U23>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U24>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U24>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U25>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U25>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U26>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U26>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U27>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U27>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U28>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U28>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U29>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U29>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U30>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U30>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U31>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U31>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U8>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U8>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U9>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U9>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U10>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U10>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U11>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U11>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U12>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U12>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U13>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U13>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U14>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U14>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U15>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U15>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U4>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U4>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U5>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U5>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U6>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U6>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U7>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U7>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U2>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U2>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U3>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U3>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U1>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U1>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI64<U0>
impl MixedNumConversion<Cartesian<u16>> for FixedI64<U0>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI8<U4>
impl MixedNumConversion<Cartesian<u16>> for FixedI8<U4>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI8<U5>
impl MixedNumConversion<Cartesian<u16>> for FixedI8<U5>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI8<U2>
impl MixedNumConversion<Cartesian<u16>> for FixedI8<U2>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI8<U3>
impl MixedNumConversion<Cartesian<u16>> for FixedI8<U3>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI8<U1>
impl MixedNumConversion<Cartesian<u16>> for FixedI8<U1>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedI8<U0>
impl MixedNumConversion<Cartesian<u16>> for FixedI8<U0>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU16<U8>
impl MixedNumConversion<Cartesian<u16>> for FixedU16<U8>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU16<U9>
impl MixedNumConversion<Cartesian<u16>> for FixedU16<U9>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU16<U10>
impl MixedNumConversion<Cartesian<u16>> for FixedU16<U10>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU16<U11>
impl MixedNumConversion<Cartesian<u16>> for FixedU16<U11>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU16<U12>
impl MixedNumConversion<Cartesian<u16>> for FixedU16<U12>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU16<U13>
impl MixedNumConversion<Cartesian<u16>> for FixedU16<U13>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU16<U4>
impl MixedNumConversion<Cartesian<u16>> for FixedU16<U4>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU16<U5>
impl MixedNumConversion<Cartesian<u16>> for FixedU16<U5>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU16<U6>
impl MixedNumConversion<Cartesian<u16>> for FixedU16<U6>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU16<U7>
impl MixedNumConversion<Cartesian<u16>> for FixedU16<U7>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU16<U2>
impl MixedNumConversion<Cartesian<u16>> for FixedU16<U2>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU16<U3>
impl MixedNumConversion<Cartesian<u16>> for FixedU16<U3>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU16<U1>
impl MixedNumConversion<Cartesian<u16>> for FixedU16<U1>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU16<U0>
impl MixedNumConversion<Cartesian<u16>> for FixedU16<U0>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U16>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U16>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U17>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U17>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U18>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U18>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U19>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U19>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U20>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U20>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U21>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U21>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U22>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U22>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U23>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U23>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U24>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U24>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U25>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U25>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U26>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U26>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U27>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U27>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U28>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U28>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U29>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U29>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U8>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U8>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U9>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U9>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U10>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U10>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U11>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U11>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U12>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U12>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U13>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U13>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U14>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U14>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U15>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U15>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U4>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U4>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U5>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U5>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U6>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U6>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U7>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U7>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U2>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U2>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U3>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U3>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U1>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U1>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU32<U0>
impl MixedNumConversion<Cartesian<u16>> for FixedU32<U0>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U32>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U32>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U33>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U33>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U34>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U34>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U35>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U35>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U36>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U36>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U37>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U37>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U38>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U38>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U39>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U39>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U40>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U40>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U41>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U41>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U42>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U42>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U43>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U43>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U44>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U44>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U45>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U45>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U46>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U46>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U47>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U47>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U48>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U48>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U49>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U49>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U50>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U50>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U51>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U51>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U52>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U52>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U53>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U53>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U54>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U54>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U55>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U55>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U56>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U56>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U57>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U57>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U58>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U58>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U59>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U59>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U60>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U60>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U61>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U61>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U16>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U16>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U17>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U17>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U18>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U18>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U19>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U19>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U20>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U20>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U21>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U21>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U22>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U22>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U23>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U23>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U24>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U24>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U25>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U25>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U26>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U26>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U27>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U27>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U28>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U28>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U29>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U29>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U30>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U30>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U31>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U31>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U8>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U8>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U9>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U9>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U10>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U10>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U11>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U11>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U12>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U12>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U13>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U13>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U14>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U14>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U15>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U15>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U4>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U4>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U5>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U5>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U6>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U6>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U7>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U7>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U2>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U2>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U3>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U3>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U1>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U1>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU64<U0>
impl MixedNumConversion<Cartesian<u16>> for FixedU64<U0>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU8<U4>
impl MixedNumConversion<Cartesian<u16>> for FixedU8<U4>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU8<U5>
impl MixedNumConversion<Cartesian<u16>> for FixedU8<U5>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU8<U2>
impl MixedNumConversion<Cartesian<u16>> for FixedU8<U2>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU8<U3>
impl MixedNumConversion<Cartesian<u16>> for FixedU8<U3>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU8<U1>
impl MixedNumConversion<Cartesian<u16>> for FixedU8<U1>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for FixedU8<U0>
impl MixedNumConversion<Cartesian<u16>> for FixedU8<U0>
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u16>> for f32
impl MixedNumConversion<Cartesian<u16>> for f32
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<u16>> for f64
impl MixedNumConversion<Cartesian<u16>> for f64
Source§fn mixed_from_num(number: Cartesian<u16>) -> Self
fn mixed_from_num(number: Cartesian<u16>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<u16>
fn mixed_to_num(&self) -> Cartesian<u16>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<u32>> for FixedI16<U8>
impl MixedNumConversion<Cartesian<u32>> for FixedI16<U8>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI16<U9>
impl MixedNumConversion<Cartesian<u32>> for FixedI16<U9>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI16<U10>
impl MixedNumConversion<Cartesian<u32>> for FixedI16<U10>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI16<U11>
impl MixedNumConversion<Cartesian<u32>> for FixedI16<U11>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI16<U12>
impl MixedNumConversion<Cartesian<u32>> for FixedI16<U12>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI16<U13>
impl MixedNumConversion<Cartesian<u32>> for FixedI16<U13>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI16<U4>
impl MixedNumConversion<Cartesian<u32>> for FixedI16<U4>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI16<U5>
impl MixedNumConversion<Cartesian<u32>> for FixedI16<U5>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI16<U6>
impl MixedNumConversion<Cartesian<u32>> for FixedI16<U6>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI16<U7>
impl MixedNumConversion<Cartesian<u32>> for FixedI16<U7>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI16<U2>
impl MixedNumConversion<Cartesian<u32>> for FixedI16<U2>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI16<U3>
impl MixedNumConversion<Cartesian<u32>> for FixedI16<U3>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI16<U1>
impl MixedNumConversion<Cartesian<u32>> for FixedI16<U1>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI16<U0>
impl MixedNumConversion<Cartesian<u32>> for FixedI16<U0>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U16>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U16>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U17>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U17>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U18>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U18>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U19>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U19>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U20>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U20>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U21>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U21>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U22>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U22>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U23>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U23>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U24>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U24>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U25>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U25>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U26>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U26>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U27>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U27>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U28>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U28>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U29>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U29>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U8>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U8>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U9>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U9>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U10>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U10>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U11>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U11>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U12>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U12>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U13>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U13>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U14>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U14>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U15>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U15>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U4>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U4>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U5>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U5>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U6>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U6>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U7>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U7>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U2>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U2>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U3>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U3>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U1>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U1>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI32<U0>
impl MixedNumConversion<Cartesian<u32>> for FixedI32<U0>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U32>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U32>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U33>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U33>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U34>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U34>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U35>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U35>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U36>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U36>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U37>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U37>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U38>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U38>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U39>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U39>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U40>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U40>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U41>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U41>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U42>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U42>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U43>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U43>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U44>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U44>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U45>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U45>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U46>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U46>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U47>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U47>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U48>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U48>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U49>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U49>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U50>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U50>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U51>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U51>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U52>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U52>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U53>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U53>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U54>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U54>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U55>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U55>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U56>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U56>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U57>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U57>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U58>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U58>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U59>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U59>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U60>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U60>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U61>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U61>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U16>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U16>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U17>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U17>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U18>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U18>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U19>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U19>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U20>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U20>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U21>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U21>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U22>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U22>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U23>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U23>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U24>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U24>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U25>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U25>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U26>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U26>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U27>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U27>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U28>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U28>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U29>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U29>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U30>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U30>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U31>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U31>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U8>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U8>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U9>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U9>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U10>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U10>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U11>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U11>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U12>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U12>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U13>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U13>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U14>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U14>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U15>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U15>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U4>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U4>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U5>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U5>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U6>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U6>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U7>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U7>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U2>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U2>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U3>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U3>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U1>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U1>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI64<U0>
impl MixedNumConversion<Cartesian<u32>> for FixedI64<U0>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI8<U4>
impl MixedNumConversion<Cartesian<u32>> for FixedI8<U4>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI8<U5>
impl MixedNumConversion<Cartesian<u32>> for FixedI8<U5>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI8<U2>
impl MixedNumConversion<Cartesian<u32>> for FixedI8<U2>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI8<U3>
impl MixedNumConversion<Cartesian<u32>> for FixedI8<U3>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI8<U1>
impl MixedNumConversion<Cartesian<u32>> for FixedI8<U1>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedI8<U0>
impl MixedNumConversion<Cartesian<u32>> for FixedI8<U0>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU16<U8>
impl MixedNumConversion<Cartesian<u32>> for FixedU16<U8>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU16<U9>
impl MixedNumConversion<Cartesian<u32>> for FixedU16<U9>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU16<U10>
impl MixedNumConversion<Cartesian<u32>> for FixedU16<U10>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU16<U11>
impl MixedNumConversion<Cartesian<u32>> for FixedU16<U11>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU16<U12>
impl MixedNumConversion<Cartesian<u32>> for FixedU16<U12>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU16<U13>
impl MixedNumConversion<Cartesian<u32>> for FixedU16<U13>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU16<U4>
impl MixedNumConversion<Cartesian<u32>> for FixedU16<U4>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU16<U5>
impl MixedNumConversion<Cartesian<u32>> for FixedU16<U5>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU16<U6>
impl MixedNumConversion<Cartesian<u32>> for FixedU16<U6>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU16<U7>
impl MixedNumConversion<Cartesian<u32>> for FixedU16<U7>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU16<U2>
impl MixedNumConversion<Cartesian<u32>> for FixedU16<U2>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU16<U3>
impl MixedNumConversion<Cartesian<u32>> for FixedU16<U3>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU16<U1>
impl MixedNumConversion<Cartesian<u32>> for FixedU16<U1>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU16<U0>
impl MixedNumConversion<Cartesian<u32>> for FixedU16<U0>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U16>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U16>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U17>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U17>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U18>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U18>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U19>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U19>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U20>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U20>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U21>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U21>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U22>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U22>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U23>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U23>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U24>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U24>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U25>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U25>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U26>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U26>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U27>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U27>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U28>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U28>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U29>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U29>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U8>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U8>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U9>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U9>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U10>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U10>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U11>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U11>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U12>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U12>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U13>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U13>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U14>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U14>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U15>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U15>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U4>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U4>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U5>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U5>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U6>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U6>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U7>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U7>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U2>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U2>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U3>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U3>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U1>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U1>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU32<U0>
impl MixedNumConversion<Cartesian<u32>> for FixedU32<U0>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U32>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U32>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U33>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U33>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U34>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U34>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U35>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U35>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U36>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U36>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U37>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U37>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U38>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U38>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U39>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U39>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U40>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U40>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U41>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U41>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U42>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U42>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U43>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U43>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U44>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U44>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U45>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U45>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U46>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U46>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U47>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U47>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U48>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U48>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U49>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U49>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U50>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U50>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U51>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U51>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U52>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U52>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U53>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U53>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U54>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U54>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U55>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U55>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U56>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U56>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U57>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U57>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U58>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U58>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U59>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U59>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U60>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U60>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U61>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U61>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U16>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U16>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U17>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U17>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U18>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U18>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U19>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U19>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U20>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U20>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U21>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U21>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U22>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U22>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U23>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U23>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U24>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U24>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U25>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U25>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U26>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U26>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U27>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U27>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U28>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U28>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U29>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U29>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U30>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U30>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U31>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U31>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U8>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U8>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U9>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U9>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U10>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U10>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U11>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U11>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U12>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U12>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U13>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U13>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U14>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U14>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U15>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U15>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U4>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U4>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U5>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U5>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U6>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U6>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U7>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U7>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U2>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U2>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U3>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U3>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U1>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U1>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU64<U0>
impl MixedNumConversion<Cartesian<u32>> for FixedU64<U0>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU8<U4>
impl MixedNumConversion<Cartesian<u32>> for FixedU8<U4>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU8<U5>
impl MixedNumConversion<Cartesian<u32>> for FixedU8<U5>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU8<U2>
impl MixedNumConversion<Cartesian<u32>> for FixedU8<U2>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU8<U3>
impl MixedNumConversion<Cartesian<u32>> for FixedU8<U3>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU8<U1>
impl MixedNumConversion<Cartesian<u32>> for FixedU8<U1>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for FixedU8<U0>
impl MixedNumConversion<Cartesian<u32>> for FixedU8<U0>
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u32>> for f32
impl MixedNumConversion<Cartesian<u32>> for f32
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<u32>> for f64
impl MixedNumConversion<Cartesian<u32>> for f64
Source§fn mixed_from_num(number: Cartesian<u32>) -> Self
fn mixed_from_num(number: Cartesian<u32>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<u32>
fn mixed_to_num(&self) -> Cartesian<u32>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<u64>> for FixedI16<U8>
impl MixedNumConversion<Cartesian<u64>> for FixedI16<U8>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI16<U9>
impl MixedNumConversion<Cartesian<u64>> for FixedI16<U9>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI16<U10>
impl MixedNumConversion<Cartesian<u64>> for FixedI16<U10>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI16<U11>
impl MixedNumConversion<Cartesian<u64>> for FixedI16<U11>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI16<U12>
impl MixedNumConversion<Cartesian<u64>> for FixedI16<U12>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI16<U13>
impl MixedNumConversion<Cartesian<u64>> for FixedI16<U13>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI16<U4>
impl MixedNumConversion<Cartesian<u64>> for FixedI16<U4>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI16<U5>
impl MixedNumConversion<Cartesian<u64>> for FixedI16<U5>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI16<U6>
impl MixedNumConversion<Cartesian<u64>> for FixedI16<U6>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI16<U7>
impl MixedNumConversion<Cartesian<u64>> for FixedI16<U7>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI16<U2>
impl MixedNumConversion<Cartesian<u64>> for FixedI16<U2>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI16<U3>
impl MixedNumConversion<Cartesian<u64>> for FixedI16<U3>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI16<U1>
impl MixedNumConversion<Cartesian<u64>> for FixedI16<U1>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI16<U0>
impl MixedNumConversion<Cartesian<u64>> for FixedI16<U0>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U16>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U16>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U17>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U17>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U18>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U18>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U19>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U19>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U20>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U20>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U21>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U21>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U22>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U22>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U23>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U23>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U24>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U24>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U25>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U25>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U26>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U26>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U27>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U27>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U28>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U28>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U29>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U29>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U8>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U8>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U9>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U9>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U10>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U10>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U11>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U11>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U12>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U12>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U13>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U13>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U14>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U14>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U15>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U15>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U4>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U4>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U5>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U5>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U6>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U6>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U7>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U7>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U2>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U2>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U3>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U3>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U1>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U1>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI32<U0>
impl MixedNumConversion<Cartesian<u64>> for FixedI32<U0>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U32>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U32>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U33>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U33>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U34>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U34>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U35>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U35>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U36>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U36>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U37>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U37>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U38>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U38>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U39>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U39>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U40>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U40>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U41>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U41>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U42>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U42>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U43>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U43>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U44>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U44>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U45>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U45>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U46>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U46>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U47>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U47>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U48>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U48>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U49>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U49>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U50>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U50>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U51>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U51>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U52>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U52>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U53>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U53>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U54>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U54>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U55>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U55>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U56>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U56>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U57>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U57>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U58>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U58>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U59>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U59>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U60>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U60>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U61>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U61>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U16>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U16>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U17>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U17>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U18>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U18>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U19>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U19>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U20>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U20>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U21>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U21>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U22>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U22>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U23>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U23>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U24>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U24>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U25>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U25>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U26>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U26>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U27>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U27>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U28>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U28>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U29>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U29>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U30>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U30>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U31>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U31>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U8>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U8>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U9>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U9>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U10>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U10>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U11>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U11>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U12>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U12>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U13>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U13>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U14>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U14>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U15>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U15>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U4>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U4>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U5>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U5>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U6>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U6>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U7>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U7>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U2>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U2>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U3>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U3>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U1>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U1>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI64<U0>
impl MixedNumConversion<Cartesian<u64>> for FixedI64<U0>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI8<U4>
impl MixedNumConversion<Cartesian<u64>> for FixedI8<U4>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI8<U5>
impl MixedNumConversion<Cartesian<u64>> for FixedI8<U5>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI8<U2>
impl MixedNumConversion<Cartesian<u64>> for FixedI8<U2>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI8<U3>
impl MixedNumConversion<Cartesian<u64>> for FixedI8<U3>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI8<U1>
impl MixedNumConversion<Cartesian<u64>> for FixedI8<U1>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedI8<U0>
impl MixedNumConversion<Cartesian<u64>> for FixedI8<U0>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU16<U8>
impl MixedNumConversion<Cartesian<u64>> for FixedU16<U8>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU16<U9>
impl MixedNumConversion<Cartesian<u64>> for FixedU16<U9>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU16<U10>
impl MixedNumConversion<Cartesian<u64>> for FixedU16<U10>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU16<U11>
impl MixedNumConversion<Cartesian<u64>> for FixedU16<U11>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU16<U12>
impl MixedNumConversion<Cartesian<u64>> for FixedU16<U12>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU16<U13>
impl MixedNumConversion<Cartesian<u64>> for FixedU16<U13>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU16<U4>
impl MixedNumConversion<Cartesian<u64>> for FixedU16<U4>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU16<U5>
impl MixedNumConversion<Cartesian<u64>> for FixedU16<U5>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU16<U6>
impl MixedNumConversion<Cartesian<u64>> for FixedU16<U6>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU16<U7>
impl MixedNumConversion<Cartesian<u64>> for FixedU16<U7>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU16<U2>
impl MixedNumConversion<Cartesian<u64>> for FixedU16<U2>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU16<U3>
impl MixedNumConversion<Cartesian<u64>> for FixedU16<U3>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU16<U1>
impl MixedNumConversion<Cartesian<u64>> for FixedU16<U1>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU16<U0>
impl MixedNumConversion<Cartesian<u64>> for FixedU16<U0>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U16>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U16>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U17>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U17>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U18>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U18>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U19>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U19>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U20>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U20>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U21>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U21>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U22>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U22>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U23>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U23>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U24>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U24>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U25>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U25>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U26>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U26>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U27>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U27>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U28>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U28>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U29>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U29>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U8>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U8>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U9>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U9>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U10>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U10>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U11>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U11>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U12>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U12>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U13>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U13>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U14>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U14>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U15>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U15>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U4>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U4>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U5>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U5>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U6>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U6>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U7>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U7>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U2>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U2>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U3>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U3>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U1>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U1>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU32<U0>
impl MixedNumConversion<Cartesian<u64>> for FixedU32<U0>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U32>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U32>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U33>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U33>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U34>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U34>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U35>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U35>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U36>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U36>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U37>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U37>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U38>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U38>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U39>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U39>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U40>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U40>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U41>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U41>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U42>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U42>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U43>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U43>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U44>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U44>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U45>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U45>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U46>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U46>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U47>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U47>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U48>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U48>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U49>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U49>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U50>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U50>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U51>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U51>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U52>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U52>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U53>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U53>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U54>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U54>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U55>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U55>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U56>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U56>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U57>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U57>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U58>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U58>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U59>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U59>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U60>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U60>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U61>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U61>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U16>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U16>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U17>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U17>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U18>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U18>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U19>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U19>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U20>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U20>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U21>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U21>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U22>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U22>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U23>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U23>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U24>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U24>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U25>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U25>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U26>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U26>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U27>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U27>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U28>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U28>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U29>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U29>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U30>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U30>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U31>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U31>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U8>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U8>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U9>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U9>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U10>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U10>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U11>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U11>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U12>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U12>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U13>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U13>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U14>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U14>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U15>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U15>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U4>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U4>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U5>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U5>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U6>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U6>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U7>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U7>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U2>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U2>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U3>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U3>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U1>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U1>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU64<U0>
impl MixedNumConversion<Cartesian<u64>> for FixedU64<U0>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU8<U4>
impl MixedNumConversion<Cartesian<u64>> for FixedU8<U4>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU8<U5>
impl MixedNumConversion<Cartesian<u64>> for FixedU8<U5>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU8<U2>
impl MixedNumConversion<Cartesian<u64>> for FixedU8<U2>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU8<U3>
impl MixedNumConversion<Cartesian<u64>> for FixedU8<U3>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU8<U1>
impl MixedNumConversion<Cartesian<u64>> for FixedU8<U1>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for FixedU8<U0>
impl MixedNumConversion<Cartesian<u64>> for FixedU8<U0>
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u64>> for f32
impl MixedNumConversion<Cartesian<u64>> for f32
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<u64>> for f64
impl MixedNumConversion<Cartesian<u64>> for f64
Source§fn mixed_from_num(number: Cartesian<u64>) -> Self
fn mixed_from_num(number: Cartesian<u64>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<u64>
fn mixed_to_num(&self) -> Cartesian<u64>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<u8>> for FixedI16<U8>
impl MixedNumConversion<Cartesian<u8>> for FixedI16<U8>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI16<U9>
impl MixedNumConversion<Cartesian<u8>> for FixedI16<U9>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI16<U10>
impl MixedNumConversion<Cartesian<u8>> for FixedI16<U10>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI16<U11>
impl MixedNumConversion<Cartesian<u8>> for FixedI16<U11>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI16<U12>
impl MixedNumConversion<Cartesian<u8>> for FixedI16<U12>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI16<U13>
impl MixedNumConversion<Cartesian<u8>> for FixedI16<U13>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI16<U4>
impl MixedNumConversion<Cartesian<u8>> for FixedI16<U4>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI16<U5>
impl MixedNumConversion<Cartesian<u8>> for FixedI16<U5>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI16<U6>
impl MixedNumConversion<Cartesian<u8>> for FixedI16<U6>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI16<U7>
impl MixedNumConversion<Cartesian<u8>> for FixedI16<U7>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI16<U2>
impl MixedNumConversion<Cartesian<u8>> for FixedI16<U2>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI16<U3>
impl MixedNumConversion<Cartesian<u8>> for FixedI16<U3>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI16<U1>
impl MixedNumConversion<Cartesian<u8>> for FixedI16<U1>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI16<U0>
impl MixedNumConversion<Cartesian<u8>> for FixedI16<U0>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U16>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U16>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U17>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U17>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U18>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U18>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U19>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U19>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U20>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U20>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U21>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U21>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U22>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U22>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U23>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U23>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U24>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U24>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U25>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U25>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U26>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U26>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U27>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U27>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U28>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U28>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U29>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U29>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U8>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U8>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U9>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U9>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U10>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U10>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U11>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U11>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U12>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U12>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U13>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U13>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U14>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U14>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U15>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U15>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U4>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U4>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U5>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U5>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U6>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U6>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U7>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U7>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U2>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U2>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U3>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U3>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U1>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U1>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI32<U0>
impl MixedNumConversion<Cartesian<u8>> for FixedI32<U0>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U32>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U32>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U33>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U33>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U34>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U34>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U35>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U35>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U36>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U36>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U37>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U37>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U38>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U38>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U39>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U39>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U40>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U40>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U41>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U41>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U42>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U42>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U43>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U43>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U44>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U44>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U45>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U45>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U46>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U46>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U47>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U47>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U48>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U48>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U49>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U49>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U50>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U50>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U51>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U51>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U52>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U52>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U53>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U53>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U54>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U54>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U55>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U55>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U56>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U56>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U57>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U57>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U58>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U58>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U59>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U59>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U60>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U60>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U61>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U61>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U16>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U16>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U17>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U17>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U18>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U18>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U19>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U19>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U20>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U20>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U21>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U21>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U22>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U22>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U23>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U23>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U24>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U24>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U25>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U25>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U26>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U26>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U27>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U27>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U28>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U28>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U29>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U29>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U30>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U30>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U31>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U31>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U8>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U8>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U9>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U9>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U10>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U10>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U11>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U11>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U12>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U12>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U13>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U13>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U14>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U14>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U15>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U15>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U4>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U4>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U5>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U5>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U6>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U6>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U7>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U7>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U2>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U2>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U3>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U3>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U1>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U1>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI64<U0>
impl MixedNumConversion<Cartesian<u8>> for FixedI64<U0>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI8<U4>
impl MixedNumConversion<Cartesian<u8>> for FixedI8<U4>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI8<U5>
impl MixedNumConversion<Cartesian<u8>> for FixedI8<U5>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI8<U2>
impl MixedNumConversion<Cartesian<u8>> for FixedI8<U2>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI8<U3>
impl MixedNumConversion<Cartesian<u8>> for FixedI8<U3>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI8<U1>
impl MixedNumConversion<Cartesian<u8>> for FixedI8<U1>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedI8<U0>
impl MixedNumConversion<Cartesian<u8>> for FixedI8<U0>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU16<U8>
impl MixedNumConversion<Cartesian<u8>> for FixedU16<U8>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU16<U9>
impl MixedNumConversion<Cartesian<u8>> for FixedU16<U9>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU16<U10>
impl MixedNumConversion<Cartesian<u8>> for FixedU16<U10>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU16<U11>
impl MixedNumConversion<Cartesian<u8>> for FixedU16<U11>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU16<U12>
impl MixedNumConversion<Cartesian<u8>> for FixedU16<U12>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU16<U13>
impl MixedNumConversion<Cartesian<u8>> for FixedU16<U13>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU16<U4>
impl MixedNumConversion<Cartesian<u8>> for FixedU16<U4>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU16<U5>
impl MixedNumConversion<Cartesian<u8>> for FixedU16<U5>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU16<U6>
impl MixedNumConversion<Cartesian<u8>> for FixedU16<U6>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU16<U7>
impl MixedNumConversion<Cartesian<u8>> for FixedU16<U7>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU16<U2>
impl MixedNumConversion<Cartesian<u8>> for FixedU16<U2>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU16<U3>
impl MixedNumConversion<Cartesian<u8>> for FixedU16<U3>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU16<U1>
impl MixedNumConversion<Cartesian<u8>> for FixedU16<U1>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU16<U0>
impl MixedNumConversion<Cartesian<u8>> for FixedU16<U0>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U16>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U16>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U17>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U17>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U18>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U18>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U19>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U19>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U20>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U20>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U21>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U21>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U22>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U22>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U23>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U23>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U24>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U24>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U25>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U25>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U26>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U26>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U27>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U27>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U28>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U28>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U29>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U29>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U8>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U8>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U9>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U9>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U10>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U10>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U11>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U11>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U12>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U12>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U13>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U13>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U14>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U14>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U15>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U15>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U4>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U4>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U5>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U5>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U6>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U6>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U7>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U7>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U2>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U2>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U3>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U3>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U1>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U1>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU32<U0>
impl MixedNumConversion<Cartesian<u8>> for FixedU32<U0>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U32>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U32>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U33>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U33>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U34>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U34>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U35>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U35>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U36>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U36>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U37>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U37>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U38>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U38>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U39>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U39>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U40>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U40>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U41>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U41>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U42>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U42>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U43>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U43>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U44>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U44>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U45>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U45>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U46>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U46>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U47>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U47>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U48>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U48>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U49>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U49>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U50>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U50>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U51>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U51>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U52>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U52>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U53>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U53>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U54>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U54>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U55>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U55>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U56>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U56>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U57>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U57>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U58>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U58>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U59>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U59>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U60>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U60>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U61>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U61>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U16>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U16>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U17>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U17>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U18>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U18>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U19>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U19>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U20>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U20>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U21>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U21>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U22>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U22>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U23>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U23>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U24>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U24>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U25>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U25>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U26>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U26>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U27>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U27>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U28>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U28>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U29>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U29>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U30>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U30>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U31>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U31>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U8>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U8>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U9>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U9>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U10>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U10>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U11>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U11>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U12>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U12>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U13>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U13>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U14>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U14>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U15>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U15>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U4>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U4>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U5>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U5>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U6>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U6>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U7>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U7>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U2>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U2>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U3>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U3>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U1>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U1>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU64<U0>
impl MixedNumConversion<Cartesian<u8>> for FixedU64<U0>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU8<U4>
impl MixedNumConversion<Cartesian<u8>> for FixedU8<U4>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU8<U5>
impl MixedNumConversion<Cartesian<u8>> for FixedU8<U5>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU8<U2>
impl MixedNumConversion<Cartesian<u8>> for FixedU8<U2>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU8<U3>
impl MixedNumConversion<Cartesian<u8>> for FixedU8<U3>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU8<U1>
impl MixedNumConversion<Cartesian<u8>> for FixedU8<U1>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for FixedU8<U0>
impl MixedNumConversion<Cartesian<u8>> for FixedU8<U0>
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<u8>> for f32
impl MixedNumConversion<Cartesian<u8>> for f32
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<u8>> for f64
impl MixedNumConversion<Cartesian<u8>> for f64
Source§fn mixed_from_num(number: Cartesian<u8>) -> Self
fn mixed_from_num(number: Cartesian<u8>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<u8>
fn mixed_to_num(&self) -> Cartesian<u8>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<usize>> for FixedI16<U8>
impl MixedNumConversion<Cartesian<usize>> for FixedI16<U8>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI16<U9>
impl MixedNumConversion<Cartesian<usize>> for FixedI16<U9>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI16<U10>
impl MixedNumConversion<Cartesian<usize>> for FixedI16<U10>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI16<U11>
impl MixedNumConversion<Cartesian<usize>> for FixedI16<U11>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI16<U12>
impl MixedNumConversion<Cartesian<usize>> for FixedI16<U12>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI16<U13>
impl MixedNumConversion<Cartesian<usize>> for FixedI16<U13>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI16<U4>
impl MixedNumConversion<Cartesian<usize>> for FixedI16<U4>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI16<U5>
impl MixedNumConversion<Cartesian<usize>> for FixedI16<U5>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI16<U6>
impl MixedNumConversion<Cartesian<usize>> for FixedI16<U6>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI16<U7>
impl MixedNumConversion<Cartesian<usize>> for FixedI16<U7>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI16<U2>
impl MixedNumConversion<Cartesian<usize>> for FixedI16<U2>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI16<U3>
impl MixedNumConversion<Cartesian<usize>> for FixedI16<U3>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI16<U1>
impl MixedNumConversion<Cartesian<usize>> for FixedI16<U1>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI16<U0>
impl MixedNumConversion<Cartesian<usize>> for FixedI16<U0>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U16>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U16>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U17>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U17>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U18>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U18>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U19>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U19>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U20>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U20>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U21>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U21>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U22>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U22>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U23>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U23>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U24>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U24>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U25>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U25>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U26>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U26>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U27>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U27>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U28>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U28>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U29>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U29>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U8>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U8>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U9>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U9>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U10>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U10>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U11>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U11>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U12>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U12>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U13>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U13>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U14>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U14>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U15>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U15>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U4>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U4>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U5>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U5>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U6>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U6>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U7>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U7>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U2>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U2>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U3>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U3>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U1>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U1>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI32<U0>
impl MixedNumConversion<Cartesian<usize>> for FixedI32<U0>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U32>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U32>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U33>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U33>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U34>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U34>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U35>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U35>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U36>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U36>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U37>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U37>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U38>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U38>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U39>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U39>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U40>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U40>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U41>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U41>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U42>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U42>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U43>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U43>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U44>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U44>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U45>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U45>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U46>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U46>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U47>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U47>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U48>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U48>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U49>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U49>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U50>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U50>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U51>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U51>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U52>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U52>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U53>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U53>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U54>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U54>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U55>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U55>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U56>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U56>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U57>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U57>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U58>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U58>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U59>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U59>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U60>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U60>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U61>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U61>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U16>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U16>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U17>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U17>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U18>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U18>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U19>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U19>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U20>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U20>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U21>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U21>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U22>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U22>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U23>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U23>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U24>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U24>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U25>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U25>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U26>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U26>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U27>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U27>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U28>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U28>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U29>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U29>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U30>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U30>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U31>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U31>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U8>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U8>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U9>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U9>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U10>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U10>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U11>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U11>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U12>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U12>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U13>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U13>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U14>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U14>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U15>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U15>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U4>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U4>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U5>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U5>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U6>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U6>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U7>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U7>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U2>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U2>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U3>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U3>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U1>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U1>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI64<U0>
impl MixedNumConversion<Cartesian<usize>> for FixedI64<U0>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI8<U4>
impl MixedNumConversion<Cartesian<usize>> for FixedI8<U4>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI8<U5>
impl MixedNumConversion<Cartesian<usize>> for FixedI8<U5>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI8<U2>
impl MixedNumConversion<Cartesian<usize>> for FixedI8<U2>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI8<U3>
impl MixedNumConversion<Cartesian<usize>> for FixedI8<U3>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI8<U1>
impl MixedNumConversion<Cartesian<usize>> for FixedI8<U1>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedI8<U0>
impl MixedNumConversion<Cartesian<usize>> for FixedI8<U0>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU16<U8>
impl MixedNumConversion<Cartesian<usize>> for FixedU16<U8>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU16<U9>
impl MixedNumConversion<Cartesian<usize>> for FixedU16<U9>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU16<U10>
impl MixedNumConversion<Cartesian<usize>> for FixedU16<U10>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU16<U11>
impl MixedNumConversion<Cartesian<usize>> for FixedU16<U11>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU16<U12>
impl MixedNumConversion<Cartesian<usize>> for FixedU16<U12>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU16<U13>
impl MixedNumConversion<Cartesian<usize>> for FixedU16<U13>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU16<U4>
impl MixedNumConversion<Cartesian<usize>> for FixedU16<U4>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU16<U5>
impl MixedNumConversion<Cartesian<usize>> for FixedU16<U5>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU16<U6>
impl MixedNumConversion<Cartesian<usize>> for FixedU16<U6>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU16<U7>
impl MixedNumConversion<Cartesian<usize>> for FixedU16<U7>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU16<U2>
impl MixedNumConversion<Cartesian<usize>> for FixedU16<U2>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU16<U3>
impl MixedNumConversion<Cartesian<usize>> for FixedU16<U3>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU16<U1>
impl MixedNumConversion<Cartesian<usize>> for FixedU16<U1>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU16<U0>
impl MixedNumConversion<Cartesian<usize>> for FixedU16<U0>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U16>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U16>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U17>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U17>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U18>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U18>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U19>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U19>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U20>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U20>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U21>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U21>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U22>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U22>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U23>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U23>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U24>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U24>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U25>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U25>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U26>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U26>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U27>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U27>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U28>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U28>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U29>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U29>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U8>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U8>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U9>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U9>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U10>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U10>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U11>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U11>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U12>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U12>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U13>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U13>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U14>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U14>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U15>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U15>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U4>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U4>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U5>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U5>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U6>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U6>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U7>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U7>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U2>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U2>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U3>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U3>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U1>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U1>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU32<U0>
impl MixedNumConversion<Cartesian<usize>> for FixedU32<U0>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U32>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U32>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U33>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U33>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U34>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U34>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U35>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U35>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U36>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U36>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U37>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U37>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U38>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U38>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U39>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U39>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U40>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U40>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U41>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U41>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U42>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U42>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U43>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U43>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U44>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U44>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U45>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U45>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U46>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U46>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U47>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U47>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U48>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U48>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U49>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U49>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U50>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U50>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U51>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U51>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U52>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U52>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U53>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U53>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U54>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U54>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U55>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U55>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U56>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U56>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U57>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U57>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U58>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U58>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U59>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U59>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U60>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U60>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U61>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U61>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U16>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U16>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U17>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U17>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U18>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U18>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U19>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U19>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U20>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U20>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U21>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U21>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U22>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U22>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U23>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U23>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U24>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U24>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U25>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U25>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U26>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U26>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U27>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U27>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U28>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U28>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U29>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U29>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U30>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U30>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U31>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U31>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U8>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U8>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U9>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U9>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U10>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U10>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U11>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U11>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U12>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U12>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U13>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U13>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U14>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U14>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U15>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U15>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U4>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U4>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U5>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U5>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U6>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U6>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U7>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U7>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U2>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U2>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U3>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U3>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U1>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U1>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU64<U0>
impl MixedNumConversion<Cartesian<usize>> for FixedU64<U0>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU8<U4>
impl MixedNumConversion<Cartesian<usize>> for FixedU8<U4>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU8<U5>
impl MixedNumConversion<Cartesian<usize>> for FixedU8<U5>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU8<U2>
impl MixedNumConversion<Cartesian<usize>> for FixedU8<U2>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU8<U3>
impl MixedNumConversion<Cartesian<usize>> for FixedU8<U3>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU8<U1>
impl MixedNumConversion<Cartesian<usize>> for FixedU8<U1>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for FixedU8<U0>
impl MixedNumConversion<Cartesian<usize>> for FixedU8<U0>
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
Source§impl MixedNumConversion<Cartesian<usize>> for f32
impl MixedNumConversion<Cartesian<usize>> for f32
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl MixedNumConversion<Cartesian<usize>> for f64
impl MixedNumConversion<Cartesian<usize>> for f64
Source§fn mixed_from_num(number: Cartesian<usize>) -> Self
fn mixed_from_num(number: Cartesian<usize>) -> Self
Extracts real part of self, including type cast to the target type.
§Example
use mixed_num::*;
use mixed_num::traits::*;
let num = Cartesian::new(1f32,0f32);
let real_num:f64 = f64::mixed_from_num(num);
assert_eq!{ real_num, 1f64 };Source§fn mixed_to_num(&self) -> Cartesian<usize>
fn mixed_to_num(&self) -> Cartesian<usize>
Casting real number to a complex, including type cast of T1 to T2 (Cartesian
§Example
use mixed_num::*;
use mixed_num::traits::*;
// Notice the support cor type cast as well as real/complex conversion.
let num: Cartesian<f64> = 2f32.mixed_to_num();
assert_eq!{ num.to_string(), "2+0i" };Source§impl<T: MixedNum + MixedZero> MixedZero for Cartesian<T>
impl<T: MixedNum + MixedZero> MixedZero for Cartesian<T>
Source§fn mixed_zero() -> Self
fn mixed_zero() -> Self
Return the zero value of type Self.
Source§impl<T: MixedNum + MixedNumSigned + MixedTrigonometry + MixedWrapPhase + MixedOps> Mul<&Polar<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedTrigonometry + MixedWrapPhase + MixedOps> Mul<&Polar<T>> for Cartesian<T>
Source§impl<T: MixedNum + MixedNumSigned + MixedTrigonometry + MixedWrapPhase + MixedOps> Mul<&mut Polar<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedTrigonometry + MixedWrapPhase + MixedOps> Mul<&mut Polar<T>> for Cartesian<T>
Source§impl<T: MixedNum + MixedNumSigned + MixedSqrt + MixedOps + MixedAbs + MixedPowi + MixedAtan + ToPolar<T>> Mul<Cartesian<T>> for Polar<T>
impl<T: MixedNum + MixedNumSigned + MixedSqrt + MixedOps + MixedAbs + MixedPowi + MixedAtan + ToPolar<T>> Mul<Cartesian<T>> for Polar<T>
Source§impl<T: MixedNum + MixedNumSigned + MixedTrigonometry + MixedWrapPhase + MixedOps> Mul<Polar<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedTrigonometry + MixedWrapPhase + MixedOps> Mul<Polar<T>> for Cartesian<T>
Source§impl<T1: MixedNum + MixedOps, T2: MixedNum + MixedOps + MixedNumConversion<T1>> Mul<T1> for Cartesian<T2>
impl<T1: MixedNum + MixedOps, T2: MixedNum + MixedOps + MixedNumConversion<T1>> Mul<T1> for Cartesian<T2>
Source§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedTrigonometry + MixedWrapPhase> MulAssign<&Polar<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedTrigonometry + MixedWrapPhase> MulAssign<&Polar<T>> for Cartesian<T>
Source§fn mul_assign(&mut self, rhs: &Polar<T>)
fn mul_assign(&mut self, rhs: &Polar<T>)
*= operation. Read moreSource§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedTrigonometry + MixedWrapPhase> MulAssign<&mut Polar<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedTrigonometry + MixedWrapPhase> MulAssign<&mut Polar<T>> for Cartesian<T>
Source§fn mul_assign(&mut self, rhs: &mut Polar<T>)
fn mul_assign(&mut self, rhs: &mut Polar<T>)
*= operation. Read moreSource§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedTrigonometry + MixedWrapPhase> MulAssign<Polar<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedTrigonometry + MixedWrapPhase> MulAssign<Polar<T>> for Cartesian<T>
Source§fn mul_assign(&mut self, rhs: Polar<T>)
fn mul_assign(&mut self, rhs: Polar<T>)
*= operation. Read moreSource§impl<T: MixedNum + MixedNumSigned> NewFromCartesian<T> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned> NewFromCartesian<T> for Cartesian<T>
Source§fn new_from_cartesian(re: T, im: T) -> Self
fn new_from_cartesian(re: T, im: T) -> Self
Type cast from real number T to Complex
Source§impl<T: MixedNum + MixedNumSigned + MixedWrapPhase + MixedTrigonometry + MixedOps> NewFromPolar<T> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedWrapPhase + MixedTrigonometry + MixedOps> NewFromPolar<T> for Cartesian<T>
Source§fn new_from_polar(mag: T, ang: T) -> Self
fn new_from_polar(mag: T, ang: T) -> Self
Source§impl<T: PartialOrd> PartialOrd for Cartesian<T>
impl<T: PartialOrd> PartialOrd for Cartesian<T>
Source§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Sub<&Cartesian<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Sub<&Cartesian<T>> for Cartesian<T>
Source§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Sub<&mut Cartesian<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Sub<&mut Cartesian<T>> for Cartesian<T>
Source§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Sub<&mut Complex<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Sub<&mut Complex<T>> for Cartesian<T>
Source§impl<T1: MixedNum + MixedOps, T2: MixedOps + MixedNumConversion<T1>> Sub<T1> for Cartesian<T2>
impl<T1: MixedNum + MixedOps, T2: MixedOps + MixedNumConversion<T1>> Sub<T1> for Cartesian<T2>
Source§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> SubAssign<&Cartesian<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> SubAssign<&Cartesian<T>> for Cartesian<T>
Source§fn sub_assign(&mut self, rhs: &Cartesian<T>)
fn sub_assign(&mut self, rhs: &Cartesian<T>)
-= operation. Read moreSource§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> SubAssign<&Complex<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> SubAssign<&Complex<T>> for Cartesian<T>
Source§fn sub_assign(&mut self, rhs: &Complex<T>)
fn sub_assign(&mut self, rhs: &Complex<T>)
-= operation. Read moreSource§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> SubAssign<&mut Cartesian<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> SubAssign<&mut Cartesian<T>> for Cartesian<T>
Source§fn sub_assign(&mut self, rhs: &mut Cartesian<T>)
fn sub_assign(&mut self, rhs: &mut Cartesian<T>)
-= operation. Read moreSource§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> SubAssign<&mut Complex<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> SubAssign<&mut Complex<T>> for Cartesian<T>
Source§fn sub_assign(&mut self, rhs: &mut Complex<T>)
fn sub_assign(&mut self, rhs: &mut Complex<T>)
-= operation. Read moreSource§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> SubAssign<Complex<T>> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> SubAssign<Complex<T>> for Cartesian<T>
Source§fn sub_assign(&mut self, rhs: Complex<T>)
fn sub_assign(&mut self, rhs: Complex<T>)
-= operation. Read moreSource§impl<T1: MixedNum + MixedOps, T2: MixedOps + MixedNumConversion<T1>> SubAssign<T1> for Cartesian<T2>
impl<T1: MixedNum + MixedOps, T2: MixedOps + MixedNumConversion<T1>> SubAssign<T1> for Cartesian<T2>
Source§fn sub_assign(&mut self, rhs: T1)
fn sub_assign(&mut self, rhs: T1)
§Example
use mixed_num::*;
use mixed_num::traits::*;
let mut c_num = Cartesian::new(1f32,2f32);
c_num = c_num-2f64;
assert_eq!{ c_num.to_string(), "-1+2i" };Source§impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> SubAssign for Cartesian<T>
impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> SubAssign for Cartesian<T>
Source§fn sub_assign(&mut self, rhs: Cartesian<T>)
fn sub_assign(&mut self, rhs: Cartesian<T>)
-= operation. Read moreSource§impl<T: MixedNum + MixedNumSigned> ToCartesian<T> for Cartesian<T>
impl<T: MixedNum + MixedNumSigned> ToCartesian<T> for Cartesian<T>
Source§fn to_cartesian(&self) -> Cartesian<T>
fn to_cartesian(&self) -> Cartesian<T>
Converison to Complex