Trait vtc::PremiereTicksSource[][src]

pub trait PremiereTicksSource: Debug {
    fn to_ticks(&self, rate: Framerate) -> PremiereTicksSourceResult;
}
Expand description

Types implementing this trait can be converted into the number of Adobe Premiere Pro Ticks that have elapsed since a timecode value of 00:00:00:00.

Required methods

Trait Implementations

Implementations on Foreign Types

impl<T> PremiereTicksSource for &T where
    T: PremiereTicksSource
[src]

fn to_ticks(&self, rate: Framerate) -> PremiereTicksSourceResult[src]

Returns the number of Adobe Premiere Pro ticks this value represents.

impl PremiereTicksSource for i64[src]

impl PremiereTicksSource for u64[src]

Implementors