Struct async_graphql_parser::types::InterfaceType [−][src]
pub struct InterfaceType {
pub implements: Vec<Positioned<Name>>,
pub fields: Vec<Positioned<FieldDefinition>>,
}
Expand description
The definition of an interface type.
Fields
implements: Vec<Positioned<Name>>
The interfaces implemented by the interface.
fields: Vec<Positioned<FieldDefinition>>
The fields of the interface type.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for InterfaceType
impl Send for InterfaceType
impl Sync for InterfaceType
impl Unpin for InterfaceType
impl UnwindSafe for InterfaceType
Blanket Implementations
Mutably borrows from an owned value. Read more