pub struct GraphQLFieldIR {
pub name: String,
pub field_type: String,
pub args: Vec<GraphQLArgumentIR>,
pub resolver: Option<String>,
}
Fields§
§name: String
§field_type: String
§args: Vec<GraphQLArgumentIR>
§resolver: Option<String>
Trait Implementations§
Source§impl Clone for GraphQLFieldIR
impl Clone for GraphQLFieldIR
Source§fn clone(&self) -> GraphQLFieldIR
fn clone(&self) -> GraphQLFieldIR
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 GraphQLFieldIR
impl Debug for GraphQLFieldIR
Source§impl<'de> Deserialize<'de> for GraphQLFieldIR
impl<'de> Deserialize<'de> for GraphQLFieldIR
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 GraphQLFieldIR
impl PartialEq for GraphQLFieldIR
Source§impl Serialize for GraphQLFieldIR
impl Serialize for GraphQLFieldIR
impl StructuralPartialEq for GraphQLFieldIR
Auto Trait Implementations§
impl Freeze for GraphQLFieldIR
impl RefUnwindSafe for GraphQLFieldIR
impl Send for GraphQLFieldIR
impl Sync for GraphQLFieldIR
impl Unpin for GraphQLFieldIR
impl UnwindSafe for GraphQLFieldIR
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