pub trait Preprocessed<T>: Display {
// Required method
fn preprocessed_data() -> &'static T;
}Expand description
An entity which has been subjected to preprocessing.
Required Methods§
fn preprocessed_data() -> &'static T
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.