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 more
sourceimpl 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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &InlineFragment) -> bool
fn ne(&self, other: &InlineFragment) -> bool
This method tests for !=
.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more