pub struct ConsistencyIssue {
pub position_a: u64,
pub position_b: u64,
pub expected_delta: u64,
pub actual_tc_delta: u64,
}Expand description
A consistency issue between two reference points.
Fields§
§position_a: u64Position of the first reference point.
position_b: u64Position of the second reference point.
expected_delta: u64Expected frame delta based on positional difference.
actual_tc_delta: u64Actual timecode frame delta.
Trait Implementations§
Source§impl Clone for ConsistencyIssue
impl Clone for ConsistencyIssue
Source§fn clone(&self) -> ConsistencyIssue
fn clone(&self) -> ConsistencyIssue
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 ConsistencyIssue
impl Debug for ConsistencyIssue
Source§impl PartialEq for ConsistencyIssue
impl PartialEq for ConsistencyIssue
impl StructuralPartialEq for ConsistencyIssue
Auto Trait Implementations§
impl Freeze for ConsistencyIssue
impl RefUnwindSafe for ConsistencyIssue
impl Send for ConsistencyIssue
impl Sync for ConsistencyIssue
impl Unpin for ConsistencyIssue
impl UnsafeUnpin for ConsistencyIssue
impl UnwindSafe for ConsistencyIssue
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