Struct AVSubtitle
#[repr(C)]pub struct AVSubtitle {
pub format: u16,
pub start_display_time: u32,
pub end_display_time: u32,
pub num_rects: u32,
pub rects: *mut *mut AVSubtitleRect,
pub pts: i64,
}
Fields§
§format: u16
§start_display_time: u32
§end_display_time: u32
§num_rects: u32
§rects: *mut *mut AVSubtitleRect
§pts: i64
< Same as packet pts, in AV_TIME_BASE
Trait Implementations§
§impl Clone for AVSubtitle
impl Clone for AVSubtitle
§fn clone(&self) -> AVSubtitle
fn clone(&self) -> AVSubtitle
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 AVSubtitle
impl Debug for AVSubtitle
impl Copy for AVSubtitle
Auto Trait Implementations§
impl Freeze for AVSubtitle
impl RefUnwindSafe for AVSubtitle
impl !Send for AVSubtitle
impl !Sync for AVSubtitle
impl Unpin for AVSubtitle
impl UnwindSafe for AVSubtitle
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