pub struct IntrospectionDirective {
pub name: String,
pub description: Option<String>,
pub is_repeatable: Option<bool>,
pub locations: Vec<DirectiveLocation>,
pub args: Vec<IntrospectionInputValue>,
}
Fields
name: String
description: Option<String>
is_repeatable: Option<bool>
locations: Vec<DirectiveLocation>
args: Vec<IntrospectionInputValue>
Trait Implementations
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