pub trait AprModelExt {
// Required method
fn to_model_card(&self) -> ModelCard;
}Expand description
Extension trait for converting AprModel to ModelCard.
Required Methods§
Sourcefn to_model_card(&self) -> ModelCard
fn to_model_card(&self) -> ModelCard
Convert to a display-ready ModelCard widget.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".