pub trait FieldProjection {
// Required method
fn get_value_by_index(&self, index: usize) -> Option<Value>;
}Required Methods§
Sourcefn get_value_by_index(&self, index: usize) -> Option<Value>
fn get_value_by_index(&self, index: usize) -> Option<Value>
Resolve one field value by stable field slot index.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".