pub trait EncoderVwhere
Self: Sized,{
// Required methods
fn new(video: &Video) -> Self;
fn run(&mut self, frame: &VFrame) -> Vec<u8> ⓘ;
fn end(self) -> Vec<u8> ⓘ;
}
Expand description
A trait for implementing encoding video (use only with non-audio formats).
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.