pub struct SampleToChunkEntry {
pub first_chunk: u32,
pub samples_per_chunk: u32,
pub sample_description_index: u32,
}Expand description
Sample-to-chunk entry (stsc box row).
Fields§
§first_chunk: u32First chunk number for this run (1-based).
samples_per_chunk: u32Number of samples per chunk in this run.
sample_description_index: u32Sample description index (1-based).
Trait Implementations§
Source§impl Clone for SampleToChunkEntry
impl Clone for SampleToChunkEntry
Source§fn clone(&self) -> SampleToChunkEntry
fn clone(&self) -> SampleToChunkEntry
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 moreSource§impl Debug for SampleToChunkEntry
impl Debug for SampleToChunkEntry
Source§impl PartialEq for SampleToChunkEntry
impl PartialEq for SampleToChunkEntry
impl Copy for SampleToChunkEntry
impl Eq for SampleToChunkEntry
impl StructuralPartialEq for SampleToChunkEntry
Auto Trait Implementations§
impl Freeze for SampleToChunkEntry
impl RefUnwindSafe for SampleToChunkEntry
impl Send for SampleToChunkEntry
impl Sync for SampleToChunkEntry
impl Unpin for SampleToChunkEntry
impl UnsafeUnpin for SampleToChunkEntry
impl UnwindSafe for SampleToChunkEntry
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