pub struct DecodedTimecode {
pub timecode: Timecode,
pub frame_rate_info: FrameRateInfo,
pub confidence: f32,
pub source: TimecodeSource,
}Expand description
Decoded timecode with metadata about source and confidence.
Fields§
§timecode: TimecodeThe timecode value.
frame_rate_info: FrameRateInfoFrame rate information.
confidence: f32Confidence score 0.0–1.0.
source: TimecodeSourceSource type.
Trait Implementations§
Source§impl Clone for DecodedTimecode
impl Clone for DecodedTimecode
Source§fn clone(&self) -> DecodedTimecode
fn clone(&self) -> DecodedTimecode
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 DecodedTimecode
impl RefUnwindSafe for DecodedTimecode
impl Send for DecodedTimecode
impl Sync for DecodedTimecode
impl Unpin for DecodedTimecode
impl UnsafeUnpin for DecodedTimecode
impl UnwindSafe for DecodedTimecode
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