Struct AVTimecode
#[repr(C)]pub struct AVTimecode {
pub start: i32,
pub flags: u32,
pub rate: AVRational,
pub fps: u32,
}
Fields§
§start: i32
< 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: u32
< frame per second; must be consistent with the rate field
Trait Implementations§
§impl Clone for AVTimecode
impl Clone for AVTimecode
§fn clone(&self) -> AVTimecode
fn clone(&self) -> AVTimecode
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for AVTimecode
impl Debug for AVTimecode
impl Copy for AVTimecode
Auto Trait Implementations§
impl Freeze for AVTimecode
impl RefUnwindSafe for AVTimecode
impl Send for AVTimecode
impl Sync for AVTimecode
impl Unpin for AVTimecode
impl UnwindSafe for AVTimecode
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