Docs.rs
  • graphql-toolkit-parser-0.2.0
    • graphql-toolkit-parser 0.2.0
    • Permalink
    • Docs.rs crate page
    • Apache-2.0
    • Links
    • Repository
    • crates.io
    • Source
    • Owners
    • LNSD
    • Dependencies
      • graphql-toolkit-ast ^0.2.0 normal
      • pest ^2.7.10 normal
      • serde ^1.0.203 normal
      • assert_matches ^1.5.0 dev
      • pest_generator ^2.7.10 dev
      • proc-macro2 ^1.0.85 dev
    • Versions
    • 100% of the crate is documented
  • Platform
    • i686-pc-windows-msvc
    • i686-unknown-linux-gnu
    • x86_64-apple-darwin
    • x86_64-pc-windows-msvc
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation

graphql_toolkit_parser0.2.0

IntoAst

Required Methods

  • into_ast

Implementors

In crate graphql_toolkit_parser

graphql_toolkit_parser

Trait IntoAst

Source
pub trait IntoAst<T> {
    // Required method
    fn into_ast(self) -> T;
}
Expand description

A value-to-AST conversion trait that consumes the input value.

Required Methods§

Source

fn into_ast(self) -> T

Convert this value into an AST type.

Implementors§

Source§

impl IntoAst<BaseType> for BaseType

Source§

impl IntoAst<ConstValue> for ConstValue

Source§

impl IntoAst<DocumentOperations> for DocumentOperations

Source§

impl IntoAst<OperationType> for OperationType

Source§

impl IntoAst<Selection> for Selection

Source§

impl IntoAst<Value> for Value

Source§

impl IntoAst<Directive> for Directive

Source§

impl IntoAst<Field> for Field

Source§

impl IntoAst<FragmentDefinition> for FragmentDefinition

Source§

impl IntoAst<FragmentSpread> for FragmentSpread

Source§

impl IntoAst<InlineFragment> for InlineFragment

Source§

impl IntoAst<Number> for Number

Source§

impl IntoAst<OperationDefinition> for OperationDefinition

Source§

impl IntoAst<SelectionSet> for SelectionSet

Source§

impl IntoAst<Type> for Type

Source§

impl IntoAst<TypeCondition> for TypeCondition

Source§

impl IntoAst<VariableDefinition> for VariableDefinition

Source§

impl<S> IntoAst<Name> for S
where S: AsRef<str>,