pub struct Descr {
pub codec: &'static str,
pub name: &'static str,
pub desc: &'static str,
pub mime: &'static str,
}Expand description
Codec descriptor.
Contains information on a codec and its own decoder.
Fields§
§codec: &'static strThe codec name.
name: &'static strThe extended codec name.
desc: &'static strThe codec description.
mime: &'static strThe codec MIME.
Trait Implementations§
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