pub struct Descr {
pub name: &'static str,
pub demuxer: &'static str,
pub description: &'static str,
pub extensions: &'static [&'static str],
pub mime: &'static [&'static str],
}Expand description
Format descriptor.
Contains information on a format and its own muxer.
Fields§
§name: &'static strFormat name.
demuxer: &'static strMuxer name.
description: &'static strFormat description.
extensions: &'static [&'static str]Format media file extensions.
mime: &'static [&'static str]Format MIME.
Trait Implementations§
impl Eq for Descr
impl StructuralPartialEq for Descr
Auto Trait Implementations§
impl Freeze for Descr
impl RefUnwindSafe for Descr
impl Send for Descr
impl Sync for Descr
impl Unpin for Descr
impl UnwindSafe for Descr
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