[][src]Struct weresocool_ast::operations::PointOp

pub struct PointOp {
    pub fm: Rational64,
    pub fa: Rational64,
    pub pm: Rational64,
    pub pa: Rational64,
    pub g: Rational64,
    pub l: Rational64,
    pub attack: Rational64,
    pub decay: Rational64,
    pub asr: ASR,
    pub portamento: Rational64,
    pub osc_type: OscType,
    pub names: NameSet,
}

Fields

fm: Rational64fa: Rational64pm: Rational64pa: Rational64g: Rational64l: Rational64attack: Rational64decay: Rational64asr: ASRportamento: Rational64osc_type: OscTypenames: NameSet

Methods

impl PointOp[src]

pub fn is_silent(&self) -> bool[src]

pub fn mod_by(&mut self, other: PointOp)[src]

pub fn init() -> PointOp[src]

pub fn init_silent() -> PointOp[src]

Trait Implementations

impl Clone for PointOp[src]

impl Debug for PointOp[src]

impl Eq for PointOp[src]

impl Hash for PointOp[src]

impl<'a, 'b> Mul<&'b PointOp> for &'a PointOp[src]

type Output = PointOp

The resulting type after applying the * operator.

impl Mul<PointOp> for PointOp[src]

type Output = PointOp

The resulting type after applying the * operator.

impl MulAssign<PointOp> for PointOp[src]

impl Ord for PointOp[src]

impl PartialEq<PointOp> for PointOp[src]

impl PartialOrd<PointOp> for PointOp[src]

impl StructuralEq for PointOp[src]

impl StructuralPartialEq for PointOp[src]

Auto Trait Implementations

impl RefUnwindSafe for PointOp

impl Send for PointOp

impl Sync for PointOp

impl Unpin for PointOp

impl UnwindSafe for PointOp

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,