pub struct OffsetEntry {
pub src_frame: u64,
pub dst_frame: u64,
pub edit_type: EditType,
}Expand description
A single entry in an offset table.
Fields§
§src_frame: u64Source timecode frame position.
dst_frame: u64Destination/record timecode frame position.
edit_type: EditTypeEdit type for this region.
Trait Implementations§
Source§impl Clone for OffsetEntry
impl Clone for OffsetEntry
Source§fn clone(&self) -> OffsetEntry
fn clone(&self) -> OffsetEntry
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 OffsetEntry
impl Debug for OffsetEntry
impl Copy for OffsetEntry
Auto Trait Implementations§
impl Freeze for OffsetEntry
impl RefUnwindSafe for OffsetEntry
impl Send for OffsetEntry
impl Sync for OffsetEntry
impl Unpin for OffsetEntry
impl UnsafeUnpin for OffsetEntry
impl UnwindSafe for OffsetEntry
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