[][src]Struct oscen::operators::Mixer

pub struct Mixer { /* fields omitted */ }

Mixer with individual attenuverters for each wave plus an overall attenuverter.

Implementations

impl Mixer[src]

pub fn new(waves: Vec<Tag>) -> Self[src]

pub fn waves(&mut self, arg: Vec<Tag>) -> &mut Self[src]

pub fn levels<T: Into<In>>(&mut self, arg: Vec<T>) -> &mut Self[src]

pub fn level<T: Into<In>>(&mut self, arg: T) -> &mut Self[src]

pub fn level_nth<T: Into<In>>(&mut self, n: usize, arg: T) -> &mut Self[src]

Trait Implementations

impl Builder for Mixer[src]

impl Clone for Mixer[src]

impl Index<usize> for Mixer[src]

type Output = Tag

The returned type after indexing.

impl IndexMut<usize> for Mixer[src]

impl Signal for Mixer[src]

Auto Trait Implementations

impl RefUnwindSafe for Mixer

impl Send for Mixer

impl Sync for Mixer

impl Unpin for Mixer

impl UnwindSafe for Mixer

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.

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