pub trait ParseScalarValue<S = DefaultScalarValue> {
    fn from_str(value: ScalarToken<'_>) -> ParseScalarResult<'_, 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