pub struct SchemaType<S> { /* private fields */ }Expand description
Metadata for a schema
Implementations§
Source§impl<S> SchemaType<S>
impl<S> SchemaType<S>
Sourcepub fn new<QueryT, MutationT, SubscriptionT>(
query_info: &QueryT::TypeInfo,
mutation_info: &MutationT::TypeInfo,
subscription_info: &SubscriptionT::TypeInfo,
) -> Selfwhere
S: ScalarValue,
QueryT: GraphQLType<S>,
MutationT: GraphQLType<S>,
SubscriptionT: GraphQLType<S>,
pub fn new<QueryT, MutationT, SubscriptionT>(
query_info: &QueryT::TypeInfo,
mutation_info: &MutationT::TypeInfo,
subscription_info: &SubscriptionT::TypeInfo,
) -> Selfwhere
S: ScalarValue,
QueryT: GraphQLType<S>,
MutationT: GraphQLType<S>,
SubscriptionT: GraphQLType<S>,
Create a new schema.
Sourcepub fn set_description(&mut self, description: impl Into<ArcStr>)
pub fn set_description(&mut self, description: impl Into<ArcStr>)
Add a description.
Sourcepub fn add_directive(&mut self, directive: DirectiveType<S>)
pub fn add_directive(&mut self, directive: DirectiveType<S>)
Add a directive like skip or include.
Sourcepub fn type_by_name(&self, name: impl AsRef<str>) -> Option<TypeType<'_, S>>
pub fn type_by_name(&self, name: impl AsRef<str>) -> Option<TypeType<'_, S>>
Get a type by name.
Sourcepub fn concrete_type_by_name(
&self,
name: impl AsRef<str>,
) -> Option<&MetaType<S>>
pub fn concrete_type_by_name( &self, name: impl AsRef<str>, ) -> Option<&MetaType<S>>
Get a concrete type by name.
Sourcepub fn query_type(&self) -> TypeType<'_, S>
pub fn query_type(&self) -> TypeType<'_, S>
Get the query type from the schema.
Sourcepub fn concrete_query_type(&self) -> &MetaType<S>
pub fn concrete_query_type(&self) -> &MetaType<S>
Get the concrete query type from the schema.
Sourcepub fn mutation_type(&self) -> Option<TypeType<'_, S>>
pub fn mutation_type(&self) -> Option<TypeType<'_, S>>
Get the mutation type from the schema.
Sourcepub fn concrete_mutation_type(&self) -> Option<&MetaType<S>>
pub fn concrete_mutation_type(&self) -> Option<&MetaType<S>>
Get the concrete mutation type from the schema.
Sourcepub fn subscription_type(&self) -> Option<TypeType<'_, S>>
pub fn subscription_type(&self) -> Option<TypeType<'_, S>>
Get the subscription type.
Sourcepub fn concrete_subscription_type(&self) -> Option<&MetaType<S>>
pub fn concrete_subscription_type(&self) -> Option<&MetaType<S>>
Get the concrete subscription type.
Sourcepub fn concrete_type_list(&self) -> Vec<&MetaType<S>>
pub fn concrete_type_list(&self) -> Vec<&MetaType<S>>
Get a list of concrete types.
Sourcepub fn make_type(
&self,
ty: &Type<impl AsRef<str>, impl AsRef<[TypeModifier]>>,
) -> TypeType<'_, S>
pub fn make_type( &self, ty: &Type<impl AsRef<str>, impl AsRef<[TypeModifier]>>, ) -> TypeType<'_, S>
Make a type.
Sourcepub fn directive_list(&self) -> Vec<&DirectiveType<S>>
pub fn directive_list(&self) -> Vec<&DirectiveType<S>>
Get a list of directives.
Sourcepub fn directive_by_name(&self, name: &str) -> Option<&DirectiveType<S>>
pub fn directive_by_name(&self, name: &str) -> Option<&DirectiveType<S>>
Get directive by name.
Sourcepub fn type_overlap(&self, t1: &MetaType<S>, t2: &MetaType<S>) -> bool
pub fn type_overlap(&self, t1: &MetaType<S>, t2: &MetaType<S>) -> bool
Determine if there is an overlap between types.
Sourcepub fn possible_types(&self, t: &MetaType<S>) -> Vec<&MetaType<S>>
pub fn possible_types(&self, t: &MetaType<S>) -> Vec<&MetaType<S>>
A list of possible typeees for a given type.
Sourcepub fn is_possible_type(
&self,
abstract_type: &MetaType<S>,
possible_type: &MetaType<S>,
) -> bool
pub fn is_possible_type( &self, abstract_type: &MetaType<S>, possible_type: &MetaType<S>, ) -> bool
If the abstract type is possible.
Sourcepub fn is_subtype(
&self,
sub_type: &Type<impl AsRef<str>, impl AsRef<[TypeModifier]>>,
super_type: &Type<impl AsRef<str>, impl AsRef<[TypeModifier]>>,
) -> bool
pub fn is_subtype( &self, sub_type: &Type<impl AsRef<str>, impl AsRef<[TypeModifier]>>, super_type: &Type<impl AsRef<str>, impl AsRef<[TypeModifier]>>, ) -> bool
If the type is a subtype of another type.
Sourcepub fn is_named_subtype(
&self,
sub_type_name: &str,
super_type_name: &str,
) -> bool
pub fn is_named_subtype( &self, sub_type_name: &str, super_type_name: &str, ) -> bool
If the type is a named subtype.
Trait Implementations§
Source§impl<S: Debug> Debug for SchemaType<S>
impl<S: Debug> Debug for SchemaType<S>
Source§impl<'a, S, T> From<&'a SchemaType<S>> for Document<'a, T>
impl<'a, S, T> From<&'a SchemaType<S>> for Document<'a, T>
Source§fn from(input: &'a SchemaType<S>) -> Document<'a, T>
fn from(input: &'a SchemaType<S>) -> Document<'a, T>
Converts to this type from the input type.
Source§impl<S> GraphQLObject<S> for SchemaType<S>where
S: ScalarValue + ScalarValue,
impl<S> GraphQLObject<S> for SchemaType<S>where
S: ScalarValue + ScalarValue,
Source§impl<S> GraphQLType<S> for SchemaType<S>where
S: ScalarValue + ScalarValue,
impl<S> GraphQLType<S> for SchemaType<S>where
S: ScalarValue + ScalarValue,
Source§impl<S> GraphQLValue<S> for SchemaType<S>where
S: ScalarValue + ScalarValue,
impl<S> GraphQLValue<S> for SchemaType<S>where
S: ScalarValue + ScalarValue,
Source§type Context = SchemaType<S>
type Context = SchemaType<S>
Context type for this
GraphQLValue. Read moreSource§type TypeInfo = ()
type TypeInfo = ()
Type that may carry additional schema information for this
GraphQLValue. Read moreSource§fn resolve_field(
&self,
info: &Self::TypeInfo,
field: &str,
args: &Arguments<'_, S>,
executor: &Executor<'_, '_, Self::Context, S>,
) -> ExecutionResult<S>
fn resolve_field( &self, info: &Self::TypeInfo, field: &str, args: &Arguments<'_, S>, executor: &Executor<'_, '_, Self::Context, S>, ) -> ExecutionResult<S>
Resolves the value of a single field on this
GraphQLValue. Read moreSource§fn concrete_type_name(&self, _: &Self::Context, _: &Self::TypeInfo) -> String
fn concrete_type_name(&self, _: &Self::Context, _: &Self::TypeInfo) -> String
Returns the concrete
GraphQLType name for this GraphQLValue being an interface,
an union or an object. Read moreSource§fn resolve_into_type(
&self,
info: &Self::TypeInfo,
type_name: &str,
selection_set: Option<&[Selection<'_, S>]>,
executor: &Executor<'_, '_, Self::Context, S>,
) -> ExecutionResult<S>
fn resolve_into_type( &self, info: &Self::TypeInfo, type_name: &str, selection_set: Option<&[Selection<'_, S>]>, executor: &Executor<'_, '_, Self::Context, S>, ) -> ExecutionResult<S>
Resolves this
GraphQLValue (being an interface or an union) into a concrete
downstream object type. Read moreSource§impl<S> GraphQLValueAsync<S> for SchemaType<S>
impl<S> GraphQLValueAsync<S> for SchemaType<S>
Source§fn resolve_field_async<'b>(
&'b self,
info: &'b Self::TypeInfo,
field: &'b str,
args: &'b Arguments<'_, S>,
executor: &'b Executor<'_, '_, Self::Context, S>,
) -> BoxFuture<'b, ExecutionResult<S>>
fn resolve_field_async<'b>( &'b self, info: &'b Self::TypeInfo, field: &'b str, args: &'b Arguments<'_, S>, executor: &'b Executor<'_, '_, Self::Context, S>, ) -> BoxFuture<'b, ExecutionResult<S>>
Resolves the value of a single field on this
GraphQLValueAsync. Read moreSource§fn resolve_into_type_async<'a>(
&'a self,
info: &'a Self::TypeInfo,
type_name: &str,
selection_set: Option<&'a [Selection<'a, S>]>,
executor: &'a Executor<'a, 'a, Self::Context, S>,
) -> BoxFuture<'a, ExecutionResult<S>>
fn resolve_into_type_async<'a>( &'a self, info: &'a Self::TypeInfo, type_name: &str, selection_set: Option<&'a [Selection<'a, S>]>, executor: &'a Executor<'a, 'a, Self::Context, S>, ) -> BoxFuture<'a, ExecutionResult<S>>
Resolves this
GraphQLValueAsync (being an interface or an union) into a
concrete downstream object type. Read moreSource§fn resolve_async<'a>(
&'a self,
info: &'a Self::TypeInfo,
selection_set: Option<&'a [Selection<'_, S>]>,
executor: &'a Executor<'_, '_, Self::Context, S>,
) -> BoxFuture<'a, ExecutionResult<S>>
fn resolve_async<'a>( &'a self, info: &'a Self::TypeInfo, selection_set: Option<&'a [Selection<'_, S>]>, executor: &'a Executor<'_, '_, Self::Context, S>, ) -> BoxFuture<'a, ExecutionResult<S>>
Source§impl<S> IsOutputType<S> for SchemaType<S>where
S: ScalarValue + ScalarValue,
impl<S> IsOutputType<S> for SchemaType<S>where
S: ScalarValue + ScalarValue,
impl<S> Context for SchemaType<S>
Auto Trait Implementations§
impl<S> Freeze for SchemaType<S>
impl<S> RefUnwindSafe for SchemaType<S>where
S: RefUnwindSafe,
impl<S> Send for SchemaType<S>where
S: Send,
impl<S> Sync for SchemaType<S>where
S: Sync,
impl<S> Unpin for SchemaType<S>where
S: Unpin,
impl<S> UnwindSafe for SchemaType<S>where
S: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
Causes
self to use its Binary implementation when Debug-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
Causes
self to use its Display implementation when
Debug-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
Causes
self to use its LowerExp implementation when
Debug-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
Causes
self to use its LowerHex implementation when
Debug-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
Causes
self to use its Octal implementation when Debug-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
Causes
self to use its Pointer implementation when
Debug-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
Causes
self to use its UpperExp implementation when
Debug-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
Causes
self to use its UpperHex implementation when
Debug-formatted.Source§impl<T> FromContext<T> for Twhere
T: Context,
impl<T> FromContext<T> for Twhere
T: Context,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Pipes by value. This is generally the method you want to use. Read more
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
Borrows
self and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
Mutably borrows
self and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
Borrows
self, then passes self.as_ref() into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
Mutably borrows
self, then passes self.as_mut() into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
Borrows
self, then passes self.deref() into the pipe function.Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Immutable access to the
Borrow<B> of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
Mutable access to the
BorrowMut<B> of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
Immutable access to the
AsRef<R> view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
Mutable access to the
AsMut<R> view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Immutable access to the
Deref::Target of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Mutable access to the
Deref::Target of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
Calls
.tap() only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
Calls
.tap_mut() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
Calls
.tap_borrow() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
Calls
.tap_borrow_mut() only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
Calls
.tap_ref() only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
Calls
.tap_ref_mut() only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
Calls
.tap_deref() only in debug builds, and is erased in release
builds.