[][src]Struct dasp_graph::node::Pass

pub struct Pass;

A simple node that passes an input directly to the output.

Works by mem-copying each buffer of the first input to each buffer of the output respectively.

This can be useful as an intermediary node when feeding the output of a node back into one of its inputs. It can also be useful for discarding excess input channels by having a Pass with less output buffers than its input.

Trait Implementations

impl Clone for Pass[src]

impl Debug for Pass[src]

impl Node for Pass[src]

impl PartialEq<Pass> for Pass[src]

impl StructuralPartialEq for Pass[src]

Auto Trait Implementations

impl RefUnwindSafe for Pass

impl Send for Pass

impl Sync for Pass

impl Unpin for Pass

impl UnwindSafe for Pass

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<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 

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

impl<S> FromSample<S> for S

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> ToSample<U> for T where
    U: FromSample<T>, 

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.