Expand description
A GraphQL document writer.
Structs§
- Serializer
- A structure for serializing Rust GraphQL AST types to GraphQL documents.
Traits§
- Formatter
- A trait for writing GraphQL documents.
- Serialize
- A trait for serializing a GraphQL AST into a GraphQL document.
Functions§
- to_
string - Serialize the given GraphQL AST as a compact GraphQL document string.
- to_
string_ pretty - Serialize the given GraphQL AST as a pretty-printed GraphQL document string.
- to_vec
- Serialize the given GraphQL AST as a compact GraphQL document byte vector.
- to_
vec_ pretty - Serialize the given GraphQL AST as a pretty-printed GraphQL document byte vector.
- to_
writer - Serialize the given GraphQL AST as a compact GraphQL document into the I/O stream.
- to_
writer_ pretty - Serialize the given GraphQL AST as a pretty-printed GraphQL document into the I/O stream.