pub struct TcRefPoint {
pub timecode: Timecode,
pub position: u64,
}Expand description
A known timecode reference point at a specific sample or frame position.
Fields§
§timecode: TimecodeThe timecode value at this reference point.
position: u64The absolute sample or frame position in the media stream.
Implementations§
Trait Implementations§
Source§impl Clone for TcRefPoint
impl Clone for TcRefPoint
Source§fn clone(&self) -> TcRefPoint
fn clone(&self) -> TcRefPoint
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 TcRefPoint
impl Debug for TcRefPoint
Source§impl PartialEq for TcRefPoint
impl PartialEq for TcRefPoint
impl Copy for TcRefPoint
impl StructuralPartialEq for TcRefPoint
Auto Trait Implementations§
impl Freeze for TcRefPoint
impl RefUnwindSafe for TcRefPoint
impl Send for TcRefPoint
impl Sync for TcRefPoint
impl Unpin for TcRefPoint
impl UnsafeUnpin for TcRefPoint
impl UnwindSafe for TcRefPoint
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