[−][src]Struct juniper::EmptyMutation 
Utility type to define read-only schemas
If you instantiate RootNode with this as the mutation, no mutation will be
generated for the schema.
Methods
impl<T> EmptyMutation<T>[src]
pub fn new() -> EmptyMutation<T>[src]
Construct a new empty mutation
Trait Implementations
impl<S, T> GraphQLType<S> for EmptyMutation<T> where
    S: ScalarValue,
    &'b S: ScalarRefValue<'b>, [src]
S: ScalarValue,
&'b S: ScalarRefValue<'b>,
type Context = T
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 meta<'r>(_: &(), registry: &mut Registry<'r, S>) -> MetaType<'r, S> where
    S: 'r,
    &'b S: ScalarRefValue<'b>, [src]
S: 'r,
&'b S: ScalarRefValue<'b>,
fn resolve_field(
    &self, 
    info: &Self::TypeInfo, 
    field_name: &str, 
    arguments: &Arguments<S>, 
    executor: &Executor<Self::Context, S>
) -> ExecutionResult<S>[src]
&self,
info: &Self::TypeInfo,
field_name: &str,
arguments: &Arguments<S>,
executor: &Executor<Self::Context, S>
) -> ExecutionResult<S>
Resolve 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<S>]>, 
    executor: &Executor<Self::Context, S>
) -> ExecutionResult<S>[src]
&self,
info: &Self::TypeInfo,
type_name: &str,
selection_set: Option<&[Selection<S>]>,
executor: &Executor<Self::Context, S>
) -> ExecutionResult<S>
Resolve this interface or union into a concrete type Read more
fn concrete_type_name(
    &self, 
    context: &Self::Context, 
    info: &Self::TypeInfo
) -> String[src]
&self,
context: &Self::Context,
info: &Self::TypeInfo
) -> String
Return the concrete type name for this instance/union. Read more
fn resolve(
    &self, 
    info: &Self::TypeInfo, 
    selection_set: Option<&[Selection<S>]>, 
    executor: &Executor<Self::Context, S>
) -> Value<S>[src]
&self,
info: &Self::TypeInfo,
selection_set: Option<&[Selection<S>]>,
executor: &Executor<Self::Context, S>
) -> Value<S>
Resolve the provided selection set against the current object. Read more
impl<T: Debug> Debug for EmptyMutation<T>[src]
Auto Trait Implementations
impl<T> Send for EmptyMutation<T> where
    T: Send, 
T: Send,
impl<T> Sync for EmptyMutation<T> where
    T: Sync, 
T: Sync,
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
    U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom for T where
    T: From<U>, [src]
T: From<U>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
    T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,