pub struct GraphQLIR {
pub schema: GraphQLSchemaIR,
pub resolvers: HashMap<String, GraphQLResolverIR>,
pub directives: Vec<GraphQLDirectiveIR>,
}
Expand description
GraphQL IR
Fields§
§schema: GraphQLSchemaIR
§resolvers: HashMap<String, GraphQLResolverIR>
§directives: Vec<GraphQLDirectiveIR>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GraphQLIR
impl<'de> Deserialize<'de> for GraphQLIR
Source§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
impl StructuralPartialEq for GraphQLIR
Auto Trait Implementations§
impl Freeze for GraphQLIR
impl RefUnwindSafe for GraphQLIR
impl Send for GraphQLIR
impl Sync for GraphQLIR
impl Unpin for GraphQLIR
impl UnwindSafe for GraphQLIR
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