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 for InlineFragment
impl PartialEq for InlineFragment
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.
impl StructuralPartialEq for InlineFragment
Auto Trait Implementations§
impl Freeze for InlineFragment
impl RefUnwindSafe for InlineFragment
impl Send for InlineFragment
impl Sync for InlineFragment
impl Unpin for InlineFragment
impl UnwindSafe for InlineFragment
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