Trait VideoRenderSource

Source
pub trait VideoRenderSource: Sized {
    // Required method
    fn video_render(
        &mut self,
        context: &mut GlobalContext,
        render: &mut VideoRenderContext,
    );
}

Required Methods§

Source

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.

Implementors§