pub struct TimecodegGap {
pub before: Timecode,
pub after: Timecode,
pub gap_frames: i64,
}Expand description
A detected gap or discontinuity in a timecode sequence.
Fields§
§before: TimecodeTimecode immediately before the gap.
after: TimecodeTimecode immediately after the gap.
gap_frames: i64Size of the gap in frames (positive = gap, negative = overlap).
Trait Implementations§
Source§impl Clone for TimecodegGap
impl Clone for TimecodegGap
Source§fn clone(&self) -> TimecodegGap
fn clone(&self) -> TimecodegGap
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 TimecodegGap
impl Debug for TimecodegGap
Source§impl PartialEq for TimecodegGap
impl PartialEq for TimecodegGap
impl Eq for TimecodegGap
impl StructuralPartialEq for TimecodegGap
Auto Trait Implementations§
impl Freeze for TimecodegGap
impl RefUnwindSafe for TimecodegGap
impl Send for TimecodegGap
impl Sync for TimecodegGap
impl Unpin for TimecodegGap
impl UnsafeUnpin for TimecodegGap
impl UnwindSafe for TimecodegGap
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