[][src]Trait av_codec::common::CodecList

pub trait CodecList: Sized {
type D: ?Sized;
    fn new() -> Self;
fn by_name(&self, name: &str) -> Option<&'static Self::D>;
fn append(&mut self, desc: &'static Self::D); fn from_list(descs: &[&'static Self::D]) -> Self { ... } }

Associated Types

type D: ?Sized

Loading content...

Required methods

fn new() -> Self

fn by_name(&self, name: &str) -> Option<&'static Self::D>

fn append(&mut self, desc: &'static Self::D)

Loading content...

Provided methods

fn from_list(descs: &[&'static Self::D]) -> Self

Loading content...

Implementors

impl CodecList for av_codec::decoder::Codecs[src]

type D = dyn Descriptor

fn from_list(descs: &[&'static Self::D]) -> Self[src]

impl CodecList for av_codec::encoder::Codecs[src]

type D = dyn Descriptor

fn from_list(descs: &[&'static Self::D]) -> Self[src]

Loading content...