Docs.rs
  • dynamic-graphql-0.1.0
    • dynamic-graphql 0.1.0
    • Docs.rs crate page
    • MIT
    • Links
    • Homepage
    • Repository
    • crates.io
    • Source
    • Owners
    • smmoosavi
    • Dependencies
      • async-graphql ^5 normal
      • dynamic-graphql-derive ^0.1.0 normal
    • Versions
    • 0% 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
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation
logo

logo

GetInputTypeRef

Required Methods

  • get_input_type_ref

Implementations on Foreign Types

  • &[Option<T>]
  • &[T]
  • Option<&[Option<T>]>
  • Option<&[T]>
  • Option<T>
  • Option<Vec<Option<T>>>
  • Option<Vec<T>>
  • Result<T, E>
  • Vec<Option<T>>
  • Vec<T>

Implementors

In dynamic_graphql

?
Change settings

Trait dynamic_graphql::GetInputTypeRef

source ·
pub trait GetInputTypeRef {
    fn get_input_type_ref() -> TypeRef;
}

Required Methods§

source

fn get_input_type_ref() -> TypeRef

Implementations on Foreign Types§

source§

impl<T, E> GetInputTypeRef for Result<T, E>where
    T: GetInputTypeRef,

source§

fn get_input_type_ref() -> TypeRef

source§

impl<T: InputType> GetInputTypeRef for Option<T>

source§

fn get_input_type_ref() -> TypeRef

source§

impl<T: InputType> GetInputTypeRef for Vec<T>

source§

fn get_input_type_ref() -> TypeRef

source§

impl<T: InputType> GetInputTypeRef for Option<Vec<T>>

source§

fn get_input_type_ref() -> TypeRef

source§

impl<T: InputType> GetInputTypeRef for Vec<Option<T>>

source§

fn get_input_type_ref() -> TypeRef

source§

impl<T: InputType> GetInputTypeRef for Option<Vec<Option<T>>>

source§

fn get_input_type_ref() -> TypeRef

source§

impl<T: InputType> GetInputTypeRef for &[T]

source§

fn get_input_type_ref() -> TypeRef

source§

impl<T: InputType> GetInputTypeRef for Option<&[T]>

source§

fn get_input_type_ref() -> TypeRef

source§

impl<T: InputType> GetInputTypeRef for &[Option<T>]

source§

fn get_input_type_ref() -> TypeRef

source§

impl<T: InputType> GetInputTypeRef for Option<&[Option<T>]>

source§

fn get_input_type_ref() -> TypeRef

Implementors§

source§

impl<T: InputType> GetInputTypeRef for T