Struct apollo_encoder::InlineFragment
source · pub struct InlineFragment { /* private fields */ }
Expand description
The InlineFragment type represents an inline fragment in a selection set that could be used as a field
InlineFragment: … TypeCondition? Directives? SelectionSet
Detailed documentation can be found in GraphQL spec.
Example
use apollo_encoder::{Field, InlineFragment, Selection, SelectionSet, TypeCondition};
use indoc::indoc;
let selections = vec![Selection::Field(Field::new(String::from("myField")))];
let mut selection_set = SelectionSet::new();
selections
.into_iter()
.for_each(|s| selection_set.selection(s));
let mut inline_fragment = InlineFragment::new(selection_set);
inline_fragment.type_condition(Some(TypeCondition::new(String::from("User"))));
assert_eq!(
inline_fragment.to_string(),
indoc! {r#"
... on User {
myField
}
"#}
);
Implementations§
source§impl InlineFragment
impl InlineFragment
sourcepub fn new(selection_set: SelectionSet) -> Self
pub fn new(selection_set: SelectionSet) -> Self
Create an instance of InlineFragment
sourcepub fn type_condition(&mut self, type_condition: Option<TypeCondition>)
pub fn type_condition(&mut self, type_condition: Option<TypeCondition>)
Set the inline fragment’s type condition.
Trait Implementations§
source§impl Clone for InlineFragment
impl Clone for InlineFragment
source§fn clone(&self) -> InlineFragment
fn clone(&self) -> InlineFragment
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 moresource§impl Debug for InlineFragment
impl Debug for InlineFragment
source§impl Display for InlineFragment
impl Display for InlineFragment
source§impl PartialEq<InlineFragment> for InlineFragment
impl PartialEq<InlineFragment> for InlineFragment
source§fn eq(&self, other: &InlineFragment) -> bool
fn eq(&self, other: &InlineFragment) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<InlineFragment> for InlineFragment
impl TryFrom<InlineFragment> for InlineFragment
source§fn try_from(node: InlineFragment) -> Result<Self, Self::Error>
fn try_from(node: InlineFragment) -> Result<Self, Self::Error>
Create an apollo-encoder node from an apollo-parser one.
Errors
This returns an error if the apollo-parser tree is not valid. The error doesn’t have much context due to TryFrom API constraints: validate the parse tree before using TryFrom if granular errors are important to you.