pub trait AuthoredFieldProjection {
// Required method
fn get_input_value_by_index(&self, index: usize) -> Option<InputValue>;
}Expand description
§============================================================================ QUERY VALUE BOUNDARIES
Name-based field input projection used before accepted-catalog admission.
Required Methods§
Sourcefn get_input_value_by_index(&self, index: usize) -> Option<InputValue>
fn get_input_value_by_index(&self, index: usize) -> Option<InputValue>
Resolve one authored 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".