#[repr(C)]pub struct AVChapter {
pub id: c_int,
pub time_base: AVRational,
pub start: i64,
pub end: i64,
pub metadata: *mut AVDictionary,
}
Fields§
§id: c_int
< unique ID to identify the chapter
time_base: AVRational
< time base in which the start/end timestamps are specified
start: i64
< chapter start/end time in time_base units
end: i64
< chapter start/end time in time_base units
metadata: *mut AVDictionary
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AVChapter
impl RefUnwindSafe for AVChapter
impl !Send for AVChapter
impl !Sync for AVChapter
impl Unpin for AVChapter
impl UnwindSafe for AVChapter
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