[][src]Struct ffmpeg_sys_next::AVTimecode

#[repr(C)]pub struct AVTimecode {
    pub start: c_int,
    pub flags: u32,
    pub rate: AVRational,
    pub fps: c_uint,
}

Fields

start: c_int

< timecode frame start (first base frame number)

flags: u32

< flags such as drop frame, +24 hours support, ...

rate: AVRational

< frame rate in rational form

fps: c_uint

< frame per second; must be consistent with the rate field

Trait Implementations

impl Clone for AVTimecode[src]

impl Copy for AVTimecode[src]

impl Debug for AVTimecode[src]

impl Eq for AVTimecode[src]

impl PartialEq<AVTimecode> for AVTimecode[src]

impl StructuralEq for AVTimecode[src]

impl StructuralPartialEq for AVTimecode[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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.