pub struct FillerComponent {
pub interchange: InterchangeObjectFields,
pub data_definition: UlBytes,
pub duration: Option<i64>,
pub dark: Vec<(u16, Vec<u8>)>,
}Expand description
The Filler Set — SMPTE ST 377-1:2019 Annex B §B.11 (byte 14/15 =
0x01/0x09): a gap placeholder inside a Sequence, consuming a
specified duration of the track’s timeline without referencing any
source essence.
Fields§
§interchange: InterchangeObjectFieldsInterchange Object (A.1) base properties.
data_definition: UlBytesData Definition (0x0201, Req) — UL identifying the essence kind.
duration: Option<i64>Duration (0x0202, Opt) — edit-unit count for this gap.
dark: Vec<(u16, Vec<u8>)>Unrecognized properties preserved for round-trip fidelity.
Trait Implementations§
Source§impl Clone for FillerComponent
impl Clone for FillerComponent
Source§fn clone(&self) -> FillerComponent
fn clone(&self) -> FillerComponent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FillerComponent
impl Debug for FillerComponent
impl Eq for FillerComponent
Source§impl<'a> Parse<'a> for FillerComponent
impl<'a> Parse<'a> for FillerComponent
Source§impl PartialEq for FillerComponent
impl PartialEq for FillerComponent
Source§impl Serialize for FillerComponent
impl Serialize for FillerComponent
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl StructuralPartialEq for FillerComponent
Auto Trait Implementations§
impl Freeze for FillerComponent
impl RefUnwindSafe for FillerComponent
impl Send for FillerComponent
impl Sync for FillerComponent
impl Unpin for FillerComponent
impl UnsafeUnpin for FillerComponent
impl UnwindSafe for FillerComponent
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