Type Alias Rcomplex

Source
pub type Rcomplex = Struct_Unnamed9;

Aliased Type§

struct Rcomplex {
    pub r: f64,
    pub i: f64,
}

Fields§

§r: f64§i: f64

Trait Implementations§

Source§

impl Add for Rcomplex

Source§

type Output = Struct_Unnamed9

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Rcomplex) -> Rcomplex

Performs the + operation. Read more
Source§

impl Debug for Rcomplex

Source§

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

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

impl Div for Rcomplex

Source§

type Output = Struct_Unnamed9

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Rcomplex) -> Rcomplex

Performs the / operation. Read more
Source§

impl Neg for Rcomplex

Source§

type Output = Struct_Unnamed9

The resulting type after applying the - operator.
Source§

fn neg(self) -> Rcomplex

Performs the unary - operation. Read more
Source§

impl Not for Rcomplex

Source§

type Output = bool

The resulting type after applying the ! operator.
Source§

fn not(self) -> bool

Performs the unary ! operation. Read more
Source§

impl PartialEq for Rcomplex

Source§

fn eq(&self, other: &Rcomplex) -> 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 Sub for Rcomplex

Source§

type Output = Struct_Unnamed9

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Rcomplex) -> Rcomplex

Performs the - operation. Read more