[][src]Struct miniaudio_sys::ma_encoder

#[repr(C)]pub struct ma_encoder {
    pub config: ma_encoder_config,
    pub onWrite: ma_encoder_write_proc,
    pub onSeek: ma_encoder_seek_proc,
    pub onInit: ma_encoder_init_proc,
    pub onUninit: ma_encoder_uninit_proc,
    pub onWritePCMFrames: ma_encoder_write_pcm_frames_proc,
    pub pUserData: *mut c_void,
    pub pInternalEncoder: *mut c_void,
    pub pFile: *mut c_void,
}

Fields

config: ma_encoder_configonWrite: ma_encoder_write_proconSeek: ma_encoder_seek_proconInit: ma_encoder_init_proconUninit: ma_encoder_uninit_proconWritePCMFrames: ma_encoder_write_pcm_frames_procpUserData: *mut c_voidpInternalEncoder: *mut c_voidpFile: *mut c_void

Trait Implementations

impl Clone for ma_encoder[src]

impl Copy for ma_encoder[src]

impl Debug for ma_encoder[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.