[][src]Struct flac_sys::FLAC__StreamMetadata_CueSheet_Track

#[repr(C)]pub struct FLAC__StreamMetadata_CueSheet_Track {
    pub offset: FLAC__uint64,
    pub number: FLAC__byte,
    pub isrc: [c_char; 13],
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1], u8>,
    pub num_indices: FLAC__byte,
    pub indices: *mut FLAC__StreamMetadata_CueSheet_Index,
}

FLAC CUESHEET track structure. (See the format specification for the full description of each field.)

Fields

offset: FLAC__uint64number: FLAC__byteisrc: [c_char; 13]_bitfield_1: __BindgenBitfieldUnit<[u8; 1], u8>num_indices: FLAC__byteindices: *mut FLAC__StreamMetadata_CueSheet_Index

Implementations

impl FLAC__StreamMetadata_CueSheet_Track[src]

pub fn type_(&self) -> c_uint[src]

pub fn set_type(&mut self, val: c_uint)[src]

pub fn pre_emphasis(&self) -> c_uint[src]

pub fn set_pre_emphasis(&mut self, val: c_uint)[src]

pub fn new_bitfield_1(
    type_: c_uint,
    pre_emphasis: c_uint
) -> __BindgenBitfieldUnit<[u8; 1], u8>
[src]

Trait Implementations

impl Clone for FLAC__StreamMetadata_CueSheet_Track[src]

impl Copy for FLAC__StreamMetadata_CueSheet_Track[src]

impl Debug for FLAC__StreamMetadata_CueSheet_Track[src]

Auto Trait Implementations

impl RefUnwindSafe for FLAC__StreamMetadata_CueSheet_Track

impl !Send for FLAC__StreamMetadata_CueSheet_Track

impl !Sync for FLAC__StreamMetadata_CueSheet_Track

impl Unpin for FLAC__StreamMetadata_CueSheet_Track

impl UnwindSafe for FLAC__StreamMetadata_CueSheet_Track

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.