#[repr(C)]pub struct FLAC__StreamMetadata_SeekTable {
pub num_points: c_uint,
pub points: *mut FLAC__StreamMetadata_SeekPoint,
}Expand description
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_uint§points: *mut FLAC__StreamMetadata_SeekPointTrait Implementations§
Source§impl Clone for FLAC__StreamMetadata_SeekTable
impl Clone for FLAC__StreamMetadata_SeekTable
Source§fn clone(&self) -> FLAC__StreamMetadata_SeekTable
fn clone(&self) -> FLAC__StreamMetadata_SeekTable
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FLAC__StreamMetadata_SeekTable
Auto Trait Implementations§
impl Freeze for FLAC__StreamMetadata_SeekTable
impl RefUnwindSafe for FLAC__StreamMetadata_SeekTable
impl !Send for FLAC__StreamMetadata_SeekTable
impl !Sync for FLAC__StreamMetadata_SeekTable
impl Unpin for FLAC__StreamMetadata_SeekTable
impl UnwindSafe for FLAC__StreamMetadata_SeekTable
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more