pub struct BatchInterpolationResult {
pub position: u64,
pub timecode: Option<Timecode>,
pub reliable: bool,
}Expand description
Batch interpolation result.
Fields§
§position: u64The position that was queried.
timecode: Option<Timecode>The interpolated timecode, or None if out of range.
reliable: boolWhether this result is considered reliable (within max_gap).
Trait Implementations§
Source§impl Clone for BatchInterpolationResult
impl Clone for BatchInterpolationResult
Source§fn clone(&self) -> BatchInterpolationResult
fn clone(&self) -> BatchInterpolationResult
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 moreAuto Trait Implementations§
impl Freeze for BatchInterpolationResult
impl RefUnwindSafe for BatchInterpolationResult
impl Send for BatchInterpolationResult
impl Sync for BatchInterpolationResult
impl Unpin for BatchInterpolationResult
impl UnsafeUnpin for BatchInterpolationResult
impl UnwindSafe for BatchInterpolationResult
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