#[repr(C)]pub struct Complex64 {
pub re: f64,
pub im: f64,
}Expand description
Double-precision complex number, ABI-compatible with the C struct
{ double real; double imag; } used by BLIS’s dcomplex, LAPACK’s
lapack_complex_double, and FFTW’s fftw_complex.
Fields§
§re: f64Real part.
im: f64Imaginary part.
Implementations§
Trait Implementations§
impl Copy for Complex64
impl Sealed for Complex64
impl StructuralPartialEq for Complex64
Auto Trait Implementations§
impl Freeze for Complex64
impl RefUnwindSafe for Complex64
impl Send for Complex64
impl Sync for Complex64
impl Unpin for Complex64
impl UnsafeUnpin for Complex64
impl UnwindSafe for Complex64
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more