pub struct Schema {
pub query_type: Option<SchemaQueryType>,
pub mutation_type: Option<SchemaMutationType>,
pub subscription_type: Option<SchemaSubscriptionType>,
pub types: Option<Vec<Option<SchemaTypes>>>,
/* private fields */
}
Fields§
§query_type: Option<SchemaQueryType>
§mutation_type: Option<SchemaMutationType>
§subscription_type: Option<SchemaSubscriptionType>
§types: Option<Vec<Option<SchemaTypes>>>
Trait Implementations§
source§impl<'de> Deserialize<'de> for Schema
impl<'de> Deserialize<'de> for Schema
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