Docs.rs
  • graphql-toolkit-ast-0.1.2
    • graphql-toolkit-ast 0.1.2
    • Docs.rs crate page
    • Apache-2.0
    • Links
    • Repository
    • crates.io
    • Source
    • Owners
    • LNSD
    • Dependencies
      • async-graphql-parser ^7.0.5 normal
      • graphql-toolkit-value ^0.1.1 normal
    • Versions
    • 100% of the crate is documented
  • Go to latest version
  • 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
    • Badges
    • Builds
    • Metadata
    • Shorthand URLs
    • Download
    • Rustdoc JSON
    • Build queue
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation

graphql_toolkit_ast0.1.2

IntoAst

Required Methods

  • into_ast

Implementors

In crate graphql_toolkit_ast

Trait graphql_toolkit_ast::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>,