[][src]Struct flac_sys::FLAC__StreamMetadata_SeekTable

#[repr(C)]
pub struct FLAC__StreamMetadata_SeekTable { pub num_points: c_uint, pub points: *mut FLAC__StreamMetadata_SeekPoint, }

FLAC SEEKTABLE structure. (c.f. format specification)

\note From the format specification:

  • The seek points must be sorted by ascending sample number.
  • Each seek point's sample number must be the first sample of the target frame.
  • Each seek point's sample number must be unique within the table.
  • Existence of a SEEKTABLE block implies a correct setting of total_samples in the stream_info block.
  • Behavior is undefined when more than one SEEKTABLE block is present in a stream.

Fields

num_points: c_uintpoints: *mut FLAC__StreamMetadata_SeekPoint

Trait Implementations

impl Copy for FLAC__StreamMetadata_SeekTable[src]

impl Clone for FLAC__StreamMetadata_SeekTable[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for FLAC__StreamMetadata_SeekTable[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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> 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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]