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