pub enum SmpteType {
Smpte,
Smpte30Drop,
Smpte25,
Other(String),
}Expand description
SMPTE-Relative Timecode Type (RFC 7826 section 4.4.1).
Variants§
Smpte
SMPTE 30 frames per second timecodes.
Smpte30Drop
SMPTE 30 frames per second timecodes with drop frames (29.97 fps).
Smpte25
SMPTE 25 frames per second timecodes.
Other(String)
Other SMPTE timecode type.
Trait Implementations§
impl Eq for SmpteType
Source§impl Ord for SmpteType
impl Ord for SmpteType
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for SmpteType
impl PartialOrd for SmpteType
impl StructuralPartialEq for SmpteType
Auto Trait Implementations§
impl Freeze for SmpteType
impl RefUnwindSafe for SmpteType
impl Send for SmpteType
impl Sync for SmpteType
impl Unpin for SmpteType
impl UnsafeUnpin for SmpteType
impl UnwindSafe for SmpteType
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