pub struct CuePoint {
pub time_ticks: u64,
pub cluster_position: u64,
}Expand description
One Segment\Cues\CuePoint entry — informational seek index; this crate
does no seeking itself (sans-io: I/O and seeking belong to the adapter).
Fields§
§time_ticks: u64CueTime in TimecodeScale ticks.
cluster_position: u64CueClusterPosition — byte offset from Segment’s data start.
Trait Implementations§
impl Copy for CuePoint
impl Eq for CuePoint
impl StructuralPartialEq for CuePoint
Auto Trait Implementations§
impl Freeze for CuePoint
impl RefUnwindSafe for CuePoint
impl Send for CuePoint
impl Sync for CuePoint
impl Unpin for CuePoint
impl UnsafeUnpin 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