pub trait VideoRenderSource: Sized {
// Required method
fn video_render(
&mut self,
context: &mut GlobalContext,
render: &mut VideoRenderContext,
);
}
Required Methods§
fn video_render( &mut self, context: &mut GlobalContext, render: &mut VideoRenderContext, )
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.