Trait Plugin Feature ExtManual
Source pub trait PluginFeatureExtManual: IsA<PluginFeature> + 'static {
// Provided methods
fn rank(&self) -> Rank { ... }
fn set_rank(&self, rank: Rank) { ... }
fn load(&self) -> Result<Self, BoolError> { ... }
}Provided Methods§
Sourcefn set_rank(&self, rank: Rank)
fn set_rank(&self, rank: Rank)
Specifies a rank for a plugin feature, so that autoplugging uses the most appropriate feature.
§rank
rank value - higher number means more priority rank
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".