pub trait IntoModelFeatures {
// Required method
fn into_model_features(self) -> ModelFeatures;
}Expand description
A trait that consumes the caller to create a new instance of ModelFeatures object.
Required Methods§
fn into_model_features(self) -> ModelFeatures
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".