pub struct FullType {
pub kind: Option<__TypeKind>,
pub name: Option<String>,
pub description: Option<String>,
pub fields: Option<Vec<FullTypeFields>>,
pub input_fields: Option<Vec<FullTypeInputFields>>,
pub interfaces: Option<Vec<FullTypeInterfaces>>,
pub enum_values: Option<Vec<FullTypeEnumValues>>,
pub possible_types: Option<Vec<FullTypePossibleTypes>>,
}
Fields§
§kind: Option<__TypeKind>
§name: Option<String>
§description: Option<String>
§fields: Option<Vec<FullTypeFields>>
§input_fields: Option<Vec<FullTypeInputFields>>
§interfaces: Option<Vec<FullTypeInterfaces>>
§enum_values: Option<Vec<FullTypeEnumValues>>
§possible_types: Option<Vec<FullTypePossibleTypes>>
Trait Implementations§
source§impl<'de> Deserialize<'de> for FullType
impl<'de> Deserialize<'de> for FullType
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more