pub trait Buffer: Send + Sync {
    // Required method
    fn to_vec(&self) -> Result<VideoFrameData, ()>;
}

Required Methods§

Implementors§