pub type ParserResult = CoercionResult<Value>;Expand description
Result of parsing with coercion tracking.
Aliased Type§
pub struct ParserResult {
pub value: Value,
pub flags: Vec<CoercionFlag>,
pub confidence: f32,
}Fields§
§value: ValueThe coerced value
flags: Vec<CoercionFlag>All coercion flags applied
confidence: f32Confidence score (0.0-1.0)