pub struct CuePoint {
pub start_offset_ts: u64,
pub tags: Vec<Tag>,
}Expand description
A CuePoint is a point, represented as a frame offset, within a Cue.
A CuePoint provides more precise indexing within a parent Cue. Additional Tags may be
associated with a CuePoint.
Fields§
§start_offset_ts: u64The offset of the first frame in the CuePoint relative to the start of the parent Cue.
A list of Tags associated with the CuePoint.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CuePoint
impl RefUnwindSafe for CuePoint
impl Send for CuePoint
impl Sync for CuePoint
impl Unpin for CuePoint
impl UnwindSafe for CuePoint
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