Struct graphql_parser::query::Number
source · pub struct Number(_);
Expand description
This represents integer number
But since there is no definition on limit of number in spec
(only in implemetation), we do a trick similar to the one
in serde_json
: encapsulate value in new-type, allowing type
to be extended later.