pub type ReferencePathEvaluateError = ReferencePathEvaluateError;Aliased Type§
pub enum ReferencePathEvaluateError {
EvaluateToMoreThan1Value(String),
IndexOnNonArrayField {
index: i32,
type_string: &'static str,
value: Value,
},
IndexOnNonObjectField {
field_name: String,
type_string: &'static str,
value: Value,
},
}