Trait FeatureProvider

Source
pub trait FeatureProvider {
    // Required method
    fn add_features(&self, builder: &mut FeatureBuilder<'_>);
}
Expand description

A trait that can be implemented by the client to do custom feature writing.

Required Methods§

Source

fn add_features(&self, builder: &mut FeatureBuilder<'_>)

The client can write additional features into the provided builder

Implementors§