Struct Type

Source
pub struct Type {
    pub kind: TypeKind,
    pub name: Option<String>,
    pub description: Option<String>,
    pub fields: Option<Vec<Field>>,
    pub input_fields: Option<Vec<InputValue>>,
    pub interfaces: Option<Vec<NamedType>>,
    pub enum_values: Option<Vec<EnumValue>>,
    pub possible_types: Option<Vec<NamedType>>,
    pub specified_by_url: Option<String>,
}
Expand description

Details about a type in the schema

Fields§

§kind: TypeKind

The kind of type this Type is describing

§name: Option<String>

The name of the Type

This is an Option but the use of this struct means it should never be None.

§description: Option<String>

A description of the type

§fields: Option<Vec<Field>>

The fields of the type, if it is an object or interface

§input_fields: Option<Vec<InputValue>>

The input fields of the type, if it is an input object

§interfaces: Option<Vec<NamedType>>

Any interfaces this type implements, if it is an object or interface

§enum_values: Option<Vec<EnumValue>>

The values this type can be, if it is an enum

§possible_types: Option<Vec<NamedType>>

A list of types that can be represented by this type if it is a union, or the set of types that implement this interface if it is an interface

§specified_by_url: Option<String>

A URL pointing to a specification for this scalar, if there is one

Trait Implementations§

Source§

impl Debug for Type

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Type

Source§

fn deserialize<__D>(deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl QueryFragment for Type

Source§

const TYPE: Option<&'static str>

The name of the type in the GraphQL schema
Source§

type SchemaType = __Type

The type in a schema that this QueryFragment represents
Source§

type VariablesFields = ()

The variables that are required to execute this QueryFragment
Source§

fn query(builder: SelectionBuilder<'_, Self::SchemaType, Self::VariablesFields>)

Adds this fragment to the query being built by builder
Source§

fn name() -> Option<Cow<'static, str>>

The name of this fragment, useful for operations, maybe fragments if we ever support them…
Source§

impl TryFrom<Type> for Type

Source§

type Error = SchemaError

The type returned in the event of a conversion error.
Source§

fn try_from(ty: Type) -> Result<Self, Self::Error>

Performs the conversion.

Auto Trait Implementations§

§

impl Freeze for Type

§

impl RefUnwindSafe for Type

§

impl Send for Type

§

impl Sync for Type

§

impl Unpin for Type

§

impl UnwindSafe for Type

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> IsFieldType<T> for T