[][src]Struct fermium::SDL_AudioCVT

#[repr(C)]
pub struct SDL_AudioCVT {
    pub needed: c_int,
    pub src_format: SDL_AudioFormat,
    pub dst_format: SDL_AudioFormat,
    pub rate_incr: f64,
    pub buf: *mut Uint8,
    pub len: c_int,
    pub len_cvt: c_int,
    pub len_mult: c_int,
    pub len_ratio: f64,
    pub filters: [SDL_AudioFilter; 10],
    pub filter_index: c_int,
}

Fields

needed: c_intsrc_format: SDL_AudioFormatdst_format: SDL_AudioFormatrate_incr: f64buf: *mut Uint8len: c_intlen_cvt: c_intlen_mult: c_intlen_ratio: f64filters: [SDL_AudioFilter; 10]filter_index: c_int

Trait Implementations

impl Debug for SDL_AudioCVT[src]

impl PartialEq<SDL_AudioCVT> for SDL_AudioCVT[src]

impl Copy for SDL_AudioCVT[src]

impl Clone for SDL_AudioCVT[src]

impl Default for SDL_AudioCVT[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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]