pub struct AVStream {
pub codecpar: *mut AVCodecParameters,
pub nb_frames: i64,
pub duration: i64,
pub time_base: AVRational,
pub avg_frame_rate: AVRational,
pub r_frame_rate: AVRational,
pub start_time: i64,
pub disposition: c_int,
pub metadata: *mut AVDictionary,
}Fields§
§codecpar: *mut AVCodecParameters§nb_frames: i64§duration: i64§time_base: AVRational§avg_frame_rate: AVRational§r_frame_rate: AVRational§start_time: i64§disposition: c_int§metadata: *mut AVDictionaryAuto Trait Implementations§
impl Freeze for AVStream
impl RefUnwindSafe for AVStream
impl !Send for AVStream
impl !Sync for AVStream
impl Unpin for AVStream
impl UnsafeUnpin for AVStream
impl UnwindSafe for AVStream
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