pub struct ConvertResult {
pub timecode: Timecode,
pub rounding_error_secs: f64,
pub exact: bool,
}Expand description
Result of a timecode conversion.
Fields§
§timecode: TimecodeThe converted timecode
rounding_error_secs: f64The rounding error in seconds (positive means output is later)
exact: boolWhether the conversion was exact (no rounding)
Trait Implementations§
Source§impl Clone for ConvertResult
impl Clone for ConvertResult
Source§fn clone(&self) -> ConvertResult
fn clone(&self) -> ConvertResult
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 ConvertResult
impl RefUnwindSafe for ConvertResult
impl Send for ConvertResult
impl Sync for ConvertResult
impl Unpin for ConvertResult
impl UnsafeUnpin for ConvertResult
impl UnwindSafe for ConvertResult
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