pub trait ModelField<T> {
// Required method
fn property(&self) -> &T;
}Expand description
Trait for exposing the internal property value of the implementing type.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".