#[repr(C)]pub struct ComplexArray {
pub real: *mut f64,
pub imag: *mut f64,
}
Expand description
Represents an array of complex numbers grouped into an array of real components and an array of coressponding complex components.
@ingroup type @author Ania Brown
Fields§
§real: *mut f64
§imag: *mut f64
Trait Implementations§
Source§impl Clone for ComplexArray
impl Clone for ComplexArray
Source§fn clone(&self) -> ComplexArray
fn clone(&self) -> ComplexArray
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ComplexArray
impl Debug for ComplexArray
impl Copy for ComplexArray
Auto Trait Implementations§
impl Freeze for ComplexArray
impl RefUnwindSafe for ComplexArray
impl !Send for ComplexArray
impl !Sync for ComplexArray
impl Unpin for ComplexArray
impl UnwindSafe for ComplexArray
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