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
sourceimpl 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
sourceimpl Clone for InlineFragment
impl Clone for InlineFragment
sourcefn clone(&self) -> InlineFragment
fn clone(&self) -> InlineFragment
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for InlineFragment
impl Debug for InlineFragment
sourceimpl Display for InlineFragment
impl Display for InlineFragment
sourceimpl PartialEq<InlineFragment> for InlineFragment
impl PartialEq<InlineFragment> for InlineFragment
sourcefn eq(&self, other: &InlineFragment) -> bool
fn eq(&self, other: &InlineFragment) -> bool
sourceimpl TryFrom<InlineFragment> for InlineFragment
impl TryFrom<InlineFragment> for InlineFragment
sourcefn 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.
type Error = FromError
type Error = FromError
The type returned in the event of a conversion error.
impl StructuralPartialEq for InlineFragment
Auto Trait Implementations
impl RefUnwindSafe for InlineFragment
impl Send for InlineFragment
impl Sync for InlineFragment
impl Unpin for InlineFragment
impl UnwindSafe for InlineFragment
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more