pub trait PluginMarker<'a, C: PixelColor>: Plugin<'a, C> { }
Expand description

Plugin marker trait.

This trait is an implementation detail. Most likely you don’t need to implement this.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'a, C, T> PluginMarker<'a, C> for Twhere T: Plugin<'a, C>, C: PixelColor,