pub struct ConventionComparison {
pub timecode: Timecode,
pub smpte: String,
pub ebu: String,
pub film: String,
pub ms: String,
pub frame: String,
}Expand description
Comparison table entry showing a timecode in multiple conventions.
Fields§
§timecode: TimecodeOriginal timecode.
smpte: StringSMPTE representation.
ebu: StringEBU representation.
film: StringFilm representation.
ms: StringMilliseconds representation.
frame: StringFrame number.
Implementations§
Trait Implementations§
Source§impl Clone for ConventionComparison
impl Clone for ConventionComparison
Source§fn clone(&self) -> ConventionComparison
fn clone(&self) -> ConventionComparison
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 ConventionComparison
impl RefUnwindSafe for ConventionComparison
impl Send for ConventionComparison
impl Sync for ConventionComparison
impl Unpin for ConventionComparison
impl UnsafeUnpin for ConventionComparison
impl UnwindSafe for ConventionComparison
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