Struct async_graphql_parser::types::ObjectType
source · 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§
source§impl Clone for ObjectType
impl Clone for ObjectType
source§fn clone(&self) -> ObjectType
fn clone(&self) -> ObjectType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for ObjectType
impl Send for ObjectType
impl Sync for ObjectType
impl Unpin for ObjectType
impl UnwindSafe for ObjectType
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more