Cartesian

Struct Cartesian 

Source
#[repr(C)]
pub struct Cartesian<T> { pub re: T, pub im: T, }
Expand description

Cartesian complex number.

Fields§

§re: T

Real part.

§im: T

Imaginary part.

Implementations§

Source§

impl<T> Cartesian<T>

Source

pub fn new(re: T, im: T) -> Self

Trait Implementations§

Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Add<&Cartesian<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Cartesian<T>) -> Self

Performs the + operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Add<&Complex<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Complex<T>) -> Self

Performs the + operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Add<&mut Cartesian<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &mut Cartesian<T>) -> Self

Performs the + operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Add<&mut Complex<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &mut Complex<T>) -> Self

Performs the + operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Add<Complex<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Complex<T>) -> Self

Performs the + operation. Read more
Source§

impl<T1: MixedNum + MixedOps + MixedZero, T2: MixedNum + MixedOps + MixedNumConversion<T1>> Add<T1> for Cartesian<T2>

Source§

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

§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(), "3+2i" };
Source§

type Output = Cartesian<T2>

The resulting type after applying the + operator.
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Add for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Cartesian<T>) -> Self

Performs the + operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> AddAssign<&Cartesian<T>> for Cartesian<T>

Source§

fn add_assign(&mut self, rhs: &Cartesian<T>)

Performs the += operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> AddAssign<&Complex<T>> for Cartesian<T>

Source§

fn add_assign(&mut self, rhs: &Complex<T>)

Performs the += operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> AddAssign<&mut Cartesian<T>> for Cartesian<T>

Source§

fn add_assign(&mut self, rhs: &mut Cartesian<T>)

Performs the += operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> AddAssign<&mut Complex<T>> for Cartesian<T>

Source§

fn add_assign(&mut self, rhs: &mut Complex<T>)

Performs the += operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> AddAssign<Complex<T>> for Cartesian<T>

Source§

fn add_assign(&mut self, rhs: Complex<T>)

Performs the += operation. Read more
Source§

impl<T1: MixedNum + MixedOps + MixedZero, T2: MixedOps + MixedNumConversion<T1>> AddAssign<T1> for Cartesian<T2>

Source§

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>

Source§

fn add_assign(&mut self, rhs: Cartesian<T>)

Performs the += operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedAtan> Arg<T> for Cartesian<T>

Source§

fn arg(&self) -> T

Argument of the complex number.

§Example
use mixed_num::*;
use mixed_num::traits::*;

let polar_num = Polar::new(1f32,0.5f32);
  
let cartesian_num = polar_num.to_cartesian();
 
assert_eq!{ cartesian_num.arg().to_string(), "0.5" };
Source§

fn ang(&self) -> T

Angle of the complex number.

§Example
use mixed_num::*;
use mixed_num::traits::*;

let polar_num = Polar::new(1f32,0.5f32);
  
let cartesian_num = polar_num.to_cartesian();
 
assert_eq!{ cartesian_num.ang().to_string(), "0.5" };
Source§

impl<T> Binary for Cartesian<T>
where T: Binary + PartialOrd + Clone + MixedZero + MixedNum + Sub<Output = T>,

Source§

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

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

impl<T: Clone> Clone for Cartesian<T>

Source§

fn clone(&self) -> Cartesian<T>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: MixedComplex + NewFromCartesian<T2>, T2: MixedNum + MixedNumSigned> Conj<T> for Cartesian<T2>

Source§

fn conj(&self) -> T

Complex Conjugate of T.

§Example
use mixed_num::*;
use mixed_num::traits::*;
 
let mut c_num = Cartesian::new(-2f32,-4f32);
 
c_num = c_num.conj();
assert_eq!{ c_num.to_string(), "-2+4i" };
Source§

impl<T: Debug> Debug for Cartesian<T>

Source§

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

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

impl<T: Default> Default for Cartesian<T>

Source§

fn default() -> Cartesian<T>

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

impl<T> Display for Cartesian<T>
where T: Display + PartialOrd + Clone + MixedZero + MixedNum + Sub<Output = T>,

Source§

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

§Example
use mixed_num::*;
use mixed_num::traits::*;
 
let mut c_num = Cartesian::new(-2f32,4f32);
assert_eq!{ c_num.to_string(), "-2+4i" };
let mut c_num = Cartesian::new(2f32,-4f32);
assert_eq!{ c_num.to_string(), "2-4i" };
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedPowi> Div<&Cartesian<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Cartesian<T>) -> Self

Performs the / operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedPowi> Div<&Complex<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Complex<T>) -> Self

Performs the / operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedPowi> Div<&mut Cartesian<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &mut Cartesian<T>) -> Self

Performs the / operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedPowi> Div<&mut Complex<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &mut Complex<T>) -> Self

Performs the / operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedPowi> Div<Complex<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Complex<T>) -> Self

Performs the / operation. Read more
Source§

impl<T1: MixedNumSigned + MixedOps + MixedZero, T2: MixedReal + MixedOps + MixedNumConversion<T1>> Div<T1> for Cartesian<T2>

Source§

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

§Example
use mixed_num::*;
use mixed_num::traits::*;
 
let mut c_num = Cartesian::new(-2f32,4f32);
 
c_num = c_num/2f64;
assert_eq!{ c_num.to_string(), "-1+2i" };
Source§

type Output = Cartesian<T2>

The resulting type after applying the / operator.
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedPowi> Div for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Cartesian<T>) -> Self

Performs the / operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero + MixedPowi> DivAssign<&Cartesian<T>> for Cartesian<T>

Source§

fn div_assign(&mut self, rhs: &Cartesian<T>)

Performs the /= operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero + MixedPowi> DivAssign<&Complex<T>> for Cartesian<T>

Source§

fn div_assign(&mut self, rhs: &Complex<T>)

Performs the /= operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero + MixedPowi> DivAssign<&mut Cartesian<T>> for Cartesian<T>

Source§

fn div_assign(&mut self, rhs: &mut Cartesian<T>)

Performs the /= operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero + MixedPowi> DivAssign<&mut Complex<T>> for Cartesian<T>

Source§

fn div_assign(&mut self, rhs: &mut Complex<T>)

Performs the /= operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero + MixedPowi> DivAssign<Complex<T>> for Cartesian<T>

Source§

fn div_assign(&mut self, rhs: Complex<T>)

Performs the /= operation. Read more
Source§

impl<T1: MixedNumSigned + MixedOps + MixedZero, T2: MixedReal + MixedOps + MixedNumConversion<T1>> DivAssign<T1> for Cartesian<T2>

Source§

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>

Source§

fn div_assign(&mut self, rhs: Cartesian<T>)

Performs the /= operation. Read more
Source§

impl<T> LowerExp for Cartesian<T>
where T: LowerExp + PartialOrd + Clone + MixedZero + MixedNum + Sub<Output = T>,

Source§

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

§Example
use mixed_num::*;
use mixed_num::traits::*;
 
let mut c_num = Cartesian::new(2e9f32,-4f32);
assert_eq!{ format!("{:e}", c_num), "2e9-4e0i" };
Source§

impl<T> LowerHex for Cartesian<T>
where T: LowerHex + PartialOrd + Clone + MixedZero + MixedNum + Sub<Output = T>,

Source§

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

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

impl<T: MixedNum + MixedNumSigned + MixedSqrt + MixedPowi + MixedOps> Mag<T> for Cartesian<T>

Source§

fn mag(&self) -> T

Magnitude of the complex number.

use mixed_num::*;
use mixed_num::traits::*;

let polar_num = Polar::new(0.5f32,0.5f32);
let cartesian_num = polar_num.to_cartesian();
  
let absolute = cartesian_num.mag();
 
assert_eq!{ absolute.to_string(), "0.5" };
Source§

fn abs(&self) -> T

Magnitude of the complex number.

use mixed_num::*;
use mixed_num::traits::*;

let polar_num = Polar::new(0.5f32,0.5f32);
let cartesian_num = polar_num.to_cartesian();
  
let absolute = cartesian_num.abs();
 
assert_eq!{ absolute.to_string(), "0.5" };
Source§

impl<T: MixedNum + MixedNumSigned + MixedSqrt + MixedPowi + MixedOps + MixedZero> MixedAbs for Cartesian<T>

Source§

fn mixed_abs(&self) -> Self

Absolute value.
Source§

impl<T: MixedNum + MixedZero> MixedComplexConversion<T> for Cartesian<T>

Source§

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>

Source§

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>

Source§

fn mixed_from_num(number: Cartesian<T1>) -> Self

Only uses the real part.

Source§

fn mixed_to_num(&self) -> Cartesian<T1>

Generic type cast to numeric type T.
Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI16<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedI8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU16<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for FixedU8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f32>> for f32

Source§

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>

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

Source§

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>

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>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedI8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU16<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for FixedU8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<f64>> for f32

Source§

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>

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

Source§

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>

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>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedI8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU16<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for FixedU8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i128>> for f32

Source§

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>

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

Source§

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>

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>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedI8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU16<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for FixedU8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i16>> for f32

Source§

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>

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

Source§

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>

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>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedI8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU16<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for FixedU8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i32>> for f32

Source§

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>

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

Source§

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>

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>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedI8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU16<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for FixedU8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i64>> for f32

Source§

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>

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

Source§

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>

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>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedI8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU16<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for FixedU8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<i8>> for f32

Source§

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>

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

Source§

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>

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>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedI8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU16<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for FixedU8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<isize>> for f32

Source§

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>

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

Source§

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>

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>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedI8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU16<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for FixedU8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u128>> for f32

Source§

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>

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

Source§

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>

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>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedI8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU16<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for FixedU8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u16>> for f32

Source§

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>

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

Source§

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>

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>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedI8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU16<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for FixedU8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u32>> for f32

Source§

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>

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

Source§

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>

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>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedI8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU16<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for FixedU8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u64>> for f32

Source§

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>

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

Source§

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>

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>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedI8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU16<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for FixedU8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<u8>> for f32

Source§

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>

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

Source§

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>

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>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedI8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU16<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU16<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU16<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU16<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU16<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU16<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU16<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU16<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU16<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU16<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU16<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU16<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU16<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU16<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU32<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U32>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U33>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U34>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U35>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U36>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U37>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U38>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U39>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U40>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U41>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U42>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U43>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U44>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U45>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U46>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U47>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U48>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U49>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U50>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U51>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U52>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U53>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U54>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U55>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U56>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U57>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U58>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U59>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U60>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U61>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U16>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U17>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U18>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U19>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U20>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U21>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U22>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U23>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U24>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U25>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U26>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U27>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U28>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U29>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U30>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U31>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U8>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U9>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U10>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U11>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U12>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U13>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U14>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U15>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U6>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U7>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU64<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU8<U4>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU8<U5>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU8<U2>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU8<U3>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU8<U1>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for FixedU8<U0>

Source§

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>

Casting real number to a complex, including type cast of T1 to T2 (Cartesian).

Source§

impl MixedNumConversion<Cartesian<usize>> for f32

Source§

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>

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

Source§

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>

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 + MixedOne> MixedOne for Cartesian<T>

Source§

fn mixed_one() -> Self

Return the zero value of type Self.

Source§

impl<T: MixedNum + MixedZero> MixedZero for Cartesian<T>

Source§

fn mixed_zero() -> Self

Return the zero value of type Self.

Source§

impl<T: MixedNum + MixedNumSigned + MixedOps> Mul<&Cartesian<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Cartesian<T>) -> Cartesian<T>

Performs the * operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedTrigonometry + MixedWrapPhase + MixedOps> Mul<&Polar<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Polar<T>) -> Self

Performs the * operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps> Mul<&mut Cartesian<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &mut Cartesian<T>) -> Cartesian<T>

Performs the * operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedTrigonometry + MixedWrapPhase + MixedOps> Mul<&mut Polar<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &mut Polar<T>) -> Self

Performs the * operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedSqrt + MixedOps + MixedAbs + MixedPowi + MixedAtan + ToPolar<T>> Mul<Cartesian<T>> for Polar<T>

Source§

type Output = Polar<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Cartesian<T>) -> Self

Performs the * operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedTrigonometry + MixedWrapPhase + MixedOps> Mul<Polar<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Polar<T>) -> Self

Performs the * operation. Read more
Source§

impl<T1: MixedNum + MixedOps, T2: MixedNum + MixedOps + MixedNumConversion<T1>> Mul<T1> for Cartesian<T2>

Source§

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

§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(), "2+4i" };
 
let mut c_num = Cartesian::new(1f32,2f32);
c_num = c_num*2f32;
assert_eq!{ c_num.to_string(), "2+4i" };
Source§

type Output = Cartesian<T2>

The resulting type after applying the * operator.
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps> Mul for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedTrigonometry + MixedWrapPhase> MulAssign<&Polar<T>> for Cartesian<T>

Source§

fn mul_assign(&mut self, rhs: &Polar<T>)

Performs the *= operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedTrigonometry + MixedWrapPhase> MulAssign<&mut Polar<T>> for Cartesian<T>

Source§

fn mul_assign(&mut self, rhs: &mut Polar<T>)

Performs the *= operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedTrigonometry + MixedWrapPhase> MulAssign<Polar<T>> for Cartesian<T>

Source§

fn mul_assign(&mut self, rhs: Polar<T>)

Performs the *= operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned> NewFromCartesian<T> for Cartesian<T>

Source§

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>

Source§

fn new_from_polar(mag: T, ang: T) -> Self

Create a complex number from polar coordinates.
Source§

impl<T> Octal for Cartesian<T>
where T: Octal + PartialOrd + Clone + MixedZero + MixedNum + Sub<Output = T>,

Source§

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

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

impl<T: PartialEq> PartialEq for Cartesian<T>

Source§

fn eq(&self, other: &Cartesian<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T: PartialOrd> PartialOrd for Cartesian<T>

Source§

fn partial_cmp(&self, other: &Cartesian<T>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Sub<&Cartesian<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Cartesian<T>) -> Self

Performs the - operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Sub<&Complex<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Complex<T>) -> Self

Performs the - operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Sub<&mut Cartesian<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &mut Cartesian<T>) -> Self

Performs the - operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Sub<&mut Complex<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &mut Complex<T>) -> Self

Performs the - operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Sub<Complex<T>> for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Complex<T>) -> Self

Performs the - operation. Read more
Source§

impl<T1: MixedNum + MixedOps, T2: MixedOps + MixedNumConversion<T1>> Sub<T1> for Cartesian<T2>

Source§

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

§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§

type Output = Cartesian<T2>

The resulting type after applying the - operator.
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> Sub for Cartesian<T>

Source§

type Output = Cartesian<T>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Cartesian<T>) -> Self

Performs the - operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> SubAssign<&Cartesian<T>> for Cartesian<T>

Source§

fn sub_assign(&mut self, rhs: &Cartesian<T>)

Performs the -= operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> SubAssign<&Complex<T>> for Cartesian<T>

Source§

fn sub_assign(&mut self, rhs: &Complex<T>)

Performs the -= operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> SubAssign<&mut Cartesian<T>> for Cartesian<T>

Source§

fn sub_assign(&mut self, rhs: &mut Cartesian<T>)

Performs the -= operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> SubAssign<&mut Complex<T>> for Cartesian<T>

Source§

fn sub_assign(&mut self, rhs: &mut Complex<T>)

Performs the -= operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned + MixedOps + MixedZero> SubAssign<Complex<T>> for Cartesian<T>

Source§

fn sub_assign(&mut self, rhs: Complex<T>)

Performs the -= operation. Read more
Source§

impl<T1: MixedNum + MixedOps, T2: MixedOps + MixedNumConversion<T1>> SubAssign<T1> for Cartesian<T2>

Source§

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>

Source§

fn sub_assign(&mut self, rhs: Cartesian<T>)

Performs the -= operation. Read more
Source§

impl<T: MixedNum + MixedNumSigned> ToCartesian<T> for Cartesian<T>

Source§

fn to_cartesian(&self) -> Cartesian<T>

Converison to Complex.

Source§

impl<T: MixedNum + MixedNumSigned + MixedSqrt + MixedOps + MixedAbs + MixedPowi + MixedAtan> ToPolar<T> for Cartesian<T>

Source§

fn to_polar(&self) -> Polar<T>

Complex to Polar.

Source§

impl<T> UpperExp for Cartesian<T>
where T: UpperExp + PartialOrd + Clone + MixedZero + MixedNum + Sub<Output = T>,

Source§

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

§Example
use mixed_num::*;
use mixed_num::traits::*;
 
let mut c_num = Cartesian::new(2e9f32,-4f32);
assert_eq!{ format!("{:E}", c_num), "2E9-4E0i" };
Source§

impl<T> UpperHex for Cartesian<T>
where T: UpperHex + PartialOrd + Clone + MixedZero + MixedNum + Sub<Output = T>,

Source§

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

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

impl<T: Copy> Copy for Cartesian<T>

Source§

impl<T: Eq> Eq for Cartesian<T>

Source§

impl<T: MixedNum + MixedNumSigned> MixedComplex for Cartesian<T>

Source§

impl<T: MixedNum + MixedNumSigned> MixedNum for Cartesian<T>

Source§

impl<T> StructuralPartialEq for Cartesian<T>

Auto Trait Implementations§

§

impl<T> Freeze for Cartesian<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Cartesian<T>
where T: RefUnwindSafe,

§

impl<T> Send for Cartesian<T>
where T: Send,

§

impl<T> Sync for Cartesian<T>
where T: Sync,

§

impl<T> Unpin for Cartesian<T>
where T: Unpin,

§

impl<T> UnwindSafe for Cartesian<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Az for T

Source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

Source§

fn cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> CheckedAs for T

Source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

Source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<Src, Dst> LosslessTryInto<Dst> for Src
where Dst: LosslessTryFrom<Src>,

Source§

fn lossless_try_into(self) -> Option<Dst>

Performs the conversion.
Source§

impl<Src, Dst> LossyInto<Dst> for Src
where Dst: LossyFrom<Src>,

Source§

fn lossy_into(self) -> Dst

Performs the conversion.
Source§

impl<T> OverflowingAs for T

Source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

Source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> SaturatingAs for T

Source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

Source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

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

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> UnwrappedAs for T

Source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

Source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> WrappingAs for T

Source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

Source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.