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 encoder.
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 RefUnwindSafe for Descr
impl Send for Descr
impl Sync for Descr
impl Unpin for Descr
impl UnwindSafe for Descr
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more