pub struct CodecInfo {
pub short_name: &'static str,
pub long_name: &'static str,
pub profiles: &'static [CodecProfileInfo],
}Expand description
Basic information about a codec.
Fields§
§short_name: &'static strA short ASCII-only string identifying the codec.
long_name: &'static strA longer, more descriptive, string identifying the codec.
profiles: &'static [CodecProfileInfo]A list of codec profiles.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CodecInfo
impl RefUnwindSafe for CodecInfo
impl Send for CodecInfo
impl Sync for CodecInfo
impl Unpin for CodecInfo
impl UnsafeUnpin for CodecInfo
impl UnwindSafe for CodecInfo
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