#[repr(C)]pub struct Coef {
pub re: f32,
pub im: f32,
}Expand description
Complex point, representing one coefficient. Magnitude is loudness at this point, argument is phase.
Fields§
§re: f32Real part of the complex number
im: f32Imaginatry part of the complex number
Trait Implementations§
Source§impl ExternType for Coef
impl ExternType for Coef
Source§impl PartialOrd for Coef
impl PartialOrd for Coef
impl Copy for Coef
impl StructuralPartialEq for Coef
Auto Trait Implementations§
impl Freeze for Coef
impl RefUnwindSafe for Coef
impl Send for Coef
impl Sync for Coef
impl Unpin for Coef
impl UnwindSafe for Coef
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