Trait juniper::marker::IsInputType[][src]

pub trait IsInputType<S: ScalarValue>: GraphQLType<S> {
    fn mark() { ... }
}
Expand description

Marker trait for types which can be used as input types.

The GraphQL specification differentiates between input and output types. Each type which can be used as an input type should implement this trait. The specification defines enum, scalar, and input object input types.

Provided methods

An arbitrary function without meaning.

May contain compile timed check logic which ensures that types are used correctly according to the GraphQL specification.

Implementations on Foreign Types

Implementors