pub trait RenderFeature {
    // Required methods
    fn set_feature_index(index: RenderFeatureIndex);
    fn feature_index() -> RenderFeatureIndex;
    fn feature_debug_name() -> &'static str;
    fn feature_debug_constants() -> &'static RenderFeatureDebugConstants;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§