pub trait EncoderAVwhere
Self: Sized,{
// Required methods
fn new(video: &Video, audio: &Audio) -> Self;
fn run(&mut self, audio: &mut Audio, video: &mut Video) -> Vec<u8> ⓘ;
fn end(self) -> Vec<u8> ⓘ;
}
Expand description
A trait for implementing encoding audio and video together.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.