pub trait ParseScalarValue<S = DefaultScalarValue> {
    fn from_str<'a>(value: ScalarToken<'a>) -> ParseScalarResult<'a, S>;
}
Expand description

A trait used to convert a ScalarToken into a certain scalar value type

Required Methods

See the trait documentation

Implementations on Foreign Types

Implementors