pub struct OutputFormatDescriptor {
pub name: &'static str,
pub long_name: &'static str,
pub extensions: &'static str,
pub mime_types: &'static str,
pub flags: OutputFormatFlags,
pub audio_codec: CodecId,
pub video_codec: CodecId,
}Expand description
Descriptor for an output format.
Fields§
§name: &'static str§long_name: &'static str§extensions: &'static str§mime_types: &'static str§flags: OutputFormatFlags§audio_codec: CodecId§video_codec: CodecIdTrait Implementations§
Source§impl Clone for OutputFormatDescriptor
impl Clone for OutputFormatDescriptor
Source§fn clone(&self) -> OutputFormatDescriptor
fn clone(&self) -> OutputFormatDescriptor
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for OutputFormatDescriptor
impl RefUnwindSafe for OutputFormatDescriptor
impl Send for OutputFormatDescriptor
impl Sync for OutputFormatDescriptor
impl Unpin for OutputFormatDescriptor
impl UnsafeUnpin for OutputFormatDescriptor
impl UnwindSafe for OutputFormatDescriptor
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