#[repr(C)]pub struct cufftDoubleComplex {
pub x: f64,
pub y: f64,
}Expand description
Double-precision complex element layout. ABI-compatible with cuFFT’s
cufftDoubleComplex (alias for double2).
Fields§
§x: f64Real component.
y: f64Imaginary component.
Trait Implementations§
Source§impl Clone for cufftDoubleComplex
impl Clone for cufftDoubleComplex
Source§fn clone(&self) -> cufftDoubleComplex
fn clone(&self) -> cufftDoubleComplex
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for cufftDoubleComplex
Source§impl Debug for cufftDoubleComplex
impl Debug for cufftDoubleComplex
Source§impl Default for cufftDoubleComplex
impl Default for cufftDoubleComplex
Source§fn default() -> cufftDoubleComplex
fn default() -> cufftDoubleComplex
Returns the “default value” for a type. Read more
Source§impl PartialEq for cufftDoubleComplex
impl PartialEq for cufftDoubleComplex
Source§fn eq(&self, other: &cufftDoubleComplex) -> bool
fn eq(&self, other: &cufftDoubleComplex) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for cufftDoubleComplex
Auto Trait Implementations§
impl Freeze for cufftDoubleComplex
impl RefUnwindSafe for cufftDoubleComplex
impl Send for cufftDoubleComplex
impl Sync for cufftDoubleComplex
impl Unpin for cufftDoubleComplex
impl UnsafeUnpin for cufftDoubleComplex
impl UnwindSafe for cufftDoubleComplex
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