OggVorbis_File

Struct OggVorbis_File 

Source
#[repr(C)]
pub struct OggVorbis_File {
Show 22 fields pub datasource: *mut c_void, pub seekable: c_int, pub offset: ogg_int64_t, pub end: ogg_int64_t, pub oy: ogg_sync_state, pub links: c_int, pub offsets: *mut ogg_int64_t, pub dataoffsets: *mut ogg_int64_t, pub serialnos: *mut c_long, pub pcmlengths: *mut ogg_int64_t, pub vi: *mut vorbis_info, pub vc: *mut vorbis_comment, pub pcm_offset: ogg_int64_t, pub ready_state: c_int, pub current_serialno: c_long, pub current_link: c_int, pub bittrack: c_double, pub samptrack: c_double, pub os: ogg_stream_state, pub vd: vorbis_dsp_state, pub vb: vorbis_block, pub callbacks: ov_callbacks,
}

Fields§

§datasource: *mut c_void§seekable: c_int§offset: ogg_int64_t§end: ogg_int64_t§oy: ogg_sync_state§links: c_int§offsets: *mut ogg_int64_t§dataoffsets: *mut ogg_int64_t§serialnos: *mut c_long§pcmlengths: *mut ogg_int64_t§vi: *mut vorbis_info§vc: *mut vorbis_comment§pcm_offset: ogg_int64_t§ready_state: c_int§current_serialno: c_long§current_link: c_int§bittrack: c_double§samptrack: c_double§os: ogg_stream_state§vd: vorbis_dsp_state§vb: vorbis_block§callbacks: ov_callbacks

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.