#[repr(C)]pub struct Complex64 {
pub re: f64,
pub im: f64,
}Expand description
Complex number with f64 real and imaginary parts (16 bytes total).
Fields§
§re: f64§im: f64Trait Implementations§
Source§impl H5Type for Complex64
impl H5Type for Complex64
Source§fn hdf5_type() -> DatatypeMessage
fn hdf5_type() -> DatatypeMessage
Return the HDF5 datatype message describing this type.
Source§fn element_size() -> usize
fn element_size() -> usize
Return the size of a single element in bytes.
impl Copy 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