[][src]Struct gaborator_sys::Coef

#[repr(C)]pub struct Coef {
    pub re: f32,
    pub im: f32,
}

Complex point, representing one coefficient. Magnitude is loudness at this point, argument is phase.

Fields

re: f32

Real part of the complex number

im: f32

Imaginatry part of the complex number

Trait Implementations

impl Clone for Coef[src]

impl Copy for Coef[src]

impl Debug for Coef[src]

impl Default for Coef[src]

impl ExternType for Coef[src]

type Id = (g, a, b, b, r, i, d, g, e, (), C, o, e, f)

A type-level representation of the type's C++ namespace and type name. Read more

type Kind = Trivial

impl PartialEq<Coef> for Coef[src]

impl PartialOrd<Coef> for Coef[src]

impl StructuralPartialEq for Coef[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.