Struct easy_complex::NumComplex [] [src]

pub struct NumComplex {
    pub real: f64,
    pub imag: f64,
}

Fields

Methods

impl NumComplex
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl Clone for NumComplex
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for NumComplex
[src]

impl Complex for NumComplex
[src]

impl From<ExpComplex> for NumComplex
[src]

Direct cast between the two types of complex

[src]

Performs the conversion.

impl Display for NumComplex
[src]

[src]

Formats the value using the given formatter. Read more

impl Add<NumComplex> for NumComplex
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl<'a, 'b> Add<&'b NumComplex> for &'a NumComplex
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl Add<ExpComplex> for NumComplex
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl<'a, 'b> Add<&'b ExpComplex> for &'a NumComplex
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl Neg for NumComplex
[src]

The resulting type after applying the - operator.

[src]

Performs the unary - operation.

impl<'a> Neg for &'a NumComplex
[src]

The resulting type after applying the - operator.

[src]

Performs the unary - operation.

impl Sub<ExpComplex> for NumComplex
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl<'a, 'b> Sub<&'b ExpComplex> for &'a NumComplex
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl Sub<NumComplex> for NumComplex
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl<'a, 'b> Sub<&'b NumComplex> for &'a NumComplex
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl Mul<NumComplex> for NumComplex
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

impl<'a, 'b> Mul<&'b NumComplex> for &'a NumComplex
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

impl Mul<ExpComplex> for NumComplex
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

impl<'a, 'b> Mul<&'b ExpComplex> for &'a NumComplex
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

impl Div<NumComplex> for NumComplex
[src]

The resulting type after applying the / operator.

[src]

Performs the / operation.

impl<'a, 'b> Div<&'b NumComplex> for &'a NumComplex
[src]

The resulting type after applying the / operator.

[src]

Performs the / operation.

impl Div<ExpComplex> for NumComplex
[src]

The resulting type after applying the / operator.

[src]

Performs the / operation.

impl<'a, 'b> Div<&'b ExpComplex> for &'a NumComplex
[src]

The resulting type after applying the / operator.

[src]

Performs the / operation.