[][src]Struct lewton::header::IdentHeader

pub struct IdentHeader {
    pub audio_channels: u8,
    pub audio_sample_rate: u32,
    pub bitrate_maximum: i32,
    pub bitrate_nominal: i32,
    pub bitrate_minimum: i32,
    pub blocksize_0: u8,
    pub blocksize_1: u8,
    // some fields omitted
}

Representation for the identification header

The identification header is the first of the three headers inside each vorbis stream.

It covers basic information about the stream.

Fields

audio_channels: u8

The number of audio channels in the stream

audio_sample_rate: u32

The sample rate of the stream

bitrate_maximum: i32

The maximum bit rate of the stream

Note that this value is only a hint and may be off by a large amount.

bitrate_nominal: i32

The nominal bit rate of the stream

Note that this value is only a hint and may be off by a large amount.

bitrate_minimum: i32

The minimum bit rate of the stream

Note that this value is only a hint and may be off by a large amount.

blocksize_0: u8blocksize_1: u8

Auto Trait Implementations

impl Unpin for IdentHeader

impl Sync for IdentHeader

impl Send for IdentHeader

impl UnwindSafe for IdentHeader

impl RefUnwindSafe for IdentHeader

Blanket Implementations

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

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]