Struct juniper::meta::Argument [−][src]
pub struct Argument<'a> { /* fields omitted */ }Metadata for an argument to a field
Methods
impl<'a> Argument<'a>[src]
impl<'a> Argument<'a>pub fn description(self, description: &str) -> Argument<'a>[src]
pub fn description(self, description: &str) -> Argument<'a>Set the description of the argument
This overwrites the description if any was previously set.
pub fn default_value(self, default_value: InputValue) -> Argument<'a>[src]
pub fn default_value(self, default_value: InputValue) -> Argument<'a>Set the default value of the argument
This overwrites the description if any was previously set.
Trait Implementations
impl<'a> Debug for Argument<'a>[src]
impl<'a> Debug for Argument<'a>fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<'a> Clone for Argument<'a>[src]
impl<'a> Clone for Argument<'a>fn clone(&self) -> Argument<'a>[src]
fn clone(&self) -> Argument<'a>Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl<'a> GraphQLType for Argument<'a>[src]
impl<'a> GraphQLType for Argument<'a>type Context = SchemaType<'a>
The expected context type for this GraphQL type Read more
type TypeInfo = ()
Type that may carry additional schema information Read more
fn name(_: &()) -> Option<&str>[src]
fn name(_: &()) -> Option<&str>The name of the GraphQL type to expose. Read more
fn meta<'r>(info: &(), registry: &mut Registry<'r>) -> MetaType<'r>[src]
fn meta<'r>(info: &(), registry: &mut Registry<'r>) -> MetaType<'r>The meta type representing this GraphQL type.
fn concrete_type_name(&self, _: &Self::Context, _: &()) -> String[src]
fn concrete_type_name(&self, _: &Self::Context, _: &()) -> StringReturn the concrete type name for this instance/union. Read more
fn resolve_field(
&self,
info: &(),
field: &str,
args: &Arguments,
executor: &Executor<Self::Context>
) -> ExecutionResult[src]
fn resolve_field(
&self,
info: &(),
field: &str,
args: &Arguments,
executor: &Executor<Self::Context>
) -> ExecutionResultResolve the value of a single field on this type. Read more
fn resolve_into_type(
&self,
info: &Self::TypeInfo,
type_name: &str,
selection_set: Option<&[Selection]>,
executor: &Executor<Self::Context>
) -> ExecutionResult[src]
fn resolve_into_type(
&self,
info: &Self::TypeInfo,
type_name: &str,
selection_set: Option<&[Selection]>,
executor: &Executor<Self::Context>
) -> ExecutionResultResolve this interface or union into a concrete type Read more
fn resolve(
&self,
info: &Self::TypeInfo,
selection_set: Option<&[Selection]>,
executor: &Executor<Self::Context>
) -> Value[src]
fn resolve(
&self,
info: &Self::TypeInfo,
selection_set: Option<&[Selection]>,
executor: &Executor<Self::Context>
) -> ValueResolve the provided selection set against the current object. Read more