pub trait IntoComplex: AsComplex {
// Provided methods
fn into_complex(self, real: bool) -> Complex<Self::Real>
where Self: Sized { ... }
fn into_re(self) -> Complex<Self::Real>
where Self: Sized { ... }
}pub trait IntoComplex: AsComplex {
// Provided methods
fn into_complex(self, real: bool) -> Complex<Self::Real>
where Self: Sized { ... }
fn into_re(self) -> Complex<Self::Real>
where Self: Sized { ... }
}