Struct sampara::signal::FromFrames[][src]

pub struct FromFrames<I, const N: usize>(_)
where
    I: Iterator,
    I::Item: Frame<N>
;

A Signal that is powered by an underlying Iterator that yields Frames.

Trait Implementations

impl<I, const N: usize> Signal<N> for FromFrames<I, N> where
    I: Iterator,
    I::Item: Frame<N>, 
[src]

type Frame = I::Item

The Frame type returned by this Signal.

Auto Trait Implementations

impl<I, const N: usize> RefUnwindSafe for FromFrames<I, N> where
    I: RefUnwindSafe

impl<I, const N: usize> Send for FromFrames<I, N> where
    I: Send

impl<I, const N: usize> Sync for FromFrames<I, N> where
    I: Sync

impl<I, const N: usize> Unpin for FromFrames<I, N> where
    I: Unpin

impl<I, const N: usize> UnwindSafe for FromFrames<I, N> where
    I: UnwindSafe

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, 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.