pub trait FormatBuilder: Send + Sync {
// Required methods
fn name(&self) -> &'static str;
fn extensions(&self) -> &[&'static str];
}Expand description
Trait for format builders (base for DemuxerBuilder and MuxerBuilder)
Required Methods§
Sourcefn extensions(&self) -> &[&'static str]
fn extensions(&self) -> &[&'static str]
Returns the file extensions this format supports (without leading dot)