pub type ComplexI8 = Complex<i8>;Expand description
Complex 8-bit signed data, as used by the HackRF.
Aliased Type§
#[repr(C)]pub struct ComplexI8 {
pub re: i8,
pub im: i8,
}Fields§
§re: i8Real portion of the complex number
im: i8Imaginary portion of the complex number