[][src]Struct scribble_curves::time::Time

pub struct Time(_);

The clock of a scribble.

Implementations

impl Time[src]

pub fn from_micros(us: i64) -> Time[src]

pub fn as_micros(&self) -> i64[src]

pub fn as_gst_clock_time(&self) -> ClockTime[src]

pub fn from_video_frame(frame: u32, fps: f64) -> Time[src]

pub fn as_video_frame(&self, fps: f64) -> u32[src]

pub fn as_audio_idx(&self, sample_rate: u32) -> usize[src]

Trait Implementations

impl Add<Diff> for Time[src]

type Output = Time

The resulting type after applying the + operator.

impl AddAssign<Diff> for Time[src]

impl Clone for Time[src]

impl Copy for Time[src]

impl Data for Time[src]

impl Debug for Time[src]

impl Default for Time[src]

impl<'de> Deserialize<'de> for Time[src]

impl Eq for Time[src]

impl Hash for Time[src]

impl Ord for Time[src]

impl PartialEq<Time> for Time[src]

impl PartialOrd<Time> for Time[src]

impl Serialize for Time[src]

impl StructuralEq for Time[src]

impl StructuralPartialEq for Time[src]

impl Sub<Diff> for Time[src]

type Output = Time

The resulting type after applying the - operator.

impl Sub<Time> for Time[src]

type Output = Diff

The resulting type after applying the - operator.

impl SubAssign<Diff> for Time[src]

Auto Trait Implementations

impl RefUnwindSafe for Time

impl Send for Time

impl Sync for Time

impl Unpin for Time

impl UnwindSafe for Time

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> AnyEq for T where
    T: PartialEq<T> + Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> RoundFrom<T> for T

impl<T, U> RoundInto<U> for T where
    U: RoundFrom<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.