pub struct GraphQLSchemaIR {
pub query: Option<String>,
pub mutation: Option<String>,
pub subscription: Option<String>,
pub types: Vec<GraphQLTypeIR>,
}
Fields§
§query: Option<String>
§mutation: Option<String>
§subscription: Option<String>
§types: Vec<GraphQLTypeIR>
Trait Implementations§
Source§impl Clone for GraphQLSchemaIR
impl Clone for GraphQLSchemaIR
Source§fn clone(&self) -> GraphQLSchemaIR
fn clone(&self) -> GraphQLSchemaIR
Returns a duplicate 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 moreSource§impl Debug for GraphQLSchemaIR
impl Debug for GraphQLSchemaIR
Source§impl<'de> Deserialize<'de> for GraphQLSchemaIR
impl<'de> Deserialize<'de> for GraphQLSchemaIR
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
Source§impl PartialEq for GraphQLSchemaIR
impl PartialEq for GraphQLSchemaIR
Source§impl Serialize for GraphQLSchemaIR
impl Serialize for GraphQLSchemaIR
impl StructuralPartialEq for GraphQLSchemaIR
Auto Trait Implementations§
impl Freeze for GraphQLSchemaIR
impl RefUnwindSafe for GraphQLSchemaIR
impl Send for GraphQLSchemaIR
impl Sync for GraphQLSchemaIR
impl Unpin for GraphQLSchemaIR
impl UnwindSafe for GraphQLSchemaIR
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