[][src]Struct cpal::InputStreamTimestamp

pub struct InputStreamTimestamp {
    pub callback: StreamInstant,
    pub capture: StreamInstant,
}

A timestamp associated with a call to an input stream's data callback.

Fields

callback: StreamInstant

The instant the stream's data callback was invoked.

capture: StreamInstant

The instant that data was captured from the device.

E.g. The instant data was read from an ADC.

Trait Implementations

impl Clone for InputStreamTimestamp[src]

impl Copy for InputStreamTimestamp[src]

impl Debug for InputStreamTimestamp[src]

impl Eq for InputStreamTimestamp[src]

impl Hash for InputStreamTimestamp[src]

impl PartialEq<InputStreamTimestamp> for InputStreamTimestamp[src]

impl StructuralEq for InputStreamTimestamp[src]

impl StructuralPartialEq for InputStreamTimestamp[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.