pub trait PremiereTicksSource: Debug {
    // Required method
    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§

source§

impl PremiereTicksSource for i64

source§

impl PremiereTicksSource for u64

source§

impl<T> PremiereTicksSource for &Twhere T: PremiereTicksSource,

source§

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

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

Implementors§