Struct AVOutputFormat
#[repr(C)]pub struct AVOutputFormat {
pub name: *const i8,
pub long_name: *const i8,
pub mime_type: *const i8,
pub extensions: *const i8,
pub audio_codec: u32,
pub video_codec: u32,
pub subtitle_codec: u32,
pub flags: i32,
pub codec_tag: *const *const AVCodecTag,
pub priv_class: *const AVClass,
}
Fields§
§name: *const i8
§long_name: *const i8
§mime_type: *const i8
§extensions: *const i8
§audio_codec: u32
§video_codec: u32
§subtitle_codec: u32
§flags: i32
§codec_tag: *const *const AVCodecTag
§priv_class: *const AVClass
Trait Implementations§
§impl Clone for AVOutputFormat
impl Clone for AVOutputFormat
§fn clone(&self) -> AVOutputFormat
fn clone(&self) -> AVOutputFormat
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 AVOutputFormat
impl Debug for AVOutputFormat
impl Copy for AVOutputFormat
Auto Trait Implementations§
impl Freeze for AVOutputFormat
impl RefUnwindSafe for AVOutputFormat
impl !Send for AVOutputFormat
impl !Sync for AVOutputFormat
impl Unpin for AVOutputFormat
impl UnwindSafe for AVOutputFormat
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