pub enum RangeUnit {
Npt,
Smpte,
Smpte30Drop,
Smpte25,
Clock,
Extension(String),
}Expand description
Range units.
Variants§
Npt
Normal playback time.
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.
Clock
Absolute time (UTC).
Extension(String)
Extension range unit.
Implementations§
Trait Implementations§
impl Eq for RangeUnit
Source§impl Ord for RangeUnit
impl Ord for RangeUnit
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 RangeUnit
impl PartialOrd for RangeUnit
impl StructuralPartialEq for RangeUnit
Auto Trait Implementations§
impl Freeze for RangeUnit
impl RefUnwindSafe for RangeUnit
impl Send for RangeUnit
impl Sync for RangeUnit
impl Unpin for RangeUnit
impl UnsafeUnpin for RangeUnit
impl UnwindSafe for RangeUnit
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