[][src]Struct libsamplerate::src_zoh::SRC_DATA

#[repr(C)]
pub struct SRC_DATA {
    pub data_in: *const c_float,
    pub data_out: *mut c_float,
    pub input_frames: c_long,
    pub output_frames: c_long,
    pub input_frames_used: c_long,
    pub output_frames_gen: c_long,
    pub end_of_input: c_int,
    pub src_ratio: c_double,
}

Fields

data_in: *const c_floatdata_out: *mut c_floatinput_frames: c_longoutput_frames: c_longinput_frames_used: c_longoutput_frames_gen: c_longend_of_input: c_intsrc_ratio: c_double

Trait Implementations

impl Clone for SRC_DATA[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for SRC_DATA[src]

Auto Trait Implementations

impl Unpin for SRC_DATA

impl !Sync for SRC_DATA

impl !Send for SRC_DATA

impl RefUnwindSafe for SRC_DATA

impl UnwindSafe for SRC_DATA

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]