pub struct GQLSchema {
pub types: Vec<GQLObject>,
pub query_type: String,
pub mutation_type: Option<String>,
}Expand description
A complete GraphQL schema (SDL-level).
Fields§
§types: Vec<GQLObject>§query_type: String§mutation_type: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for GQLSchema
impl RefUnwindSafe for GQLSchema
impl Send for GQLSchema
impl Sync for GQLSchema
impl Unpin for GQLSchema
impl UnsafeUnpin for GQLSchema
impl UnwindSafe for GQLSchema
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