Struct apollo_encoder::SelectionSet
source · [−]pub struct SelectionSet { /* private fields */ }
Expand description
The SelectionSet type represents a selection_set type in a fragment spread, an operation or a field
SelectionSet: Selection*
Detailed documentation can be found in GraphQL spec.
Example
use apollo_encoder::{Field, FragmentSpread, Selection, SelectionSet, TypeCondition};
use indoc::indoc;
let selections = vec![
Selection::Field(Field::new(String::from("myField"))),
Selection::FragmentSpread(FragmentSpread::new(String::from("myFragment"))),
];
let mut selection_set = SelectionSet::new();
selections
.into_iter()
.for_each(|s| selection_set.selection(s));
assert_eq!(
selection_set.to_string(),
indoc! {r#"
{
myField
...myFragment
}
"#}
)
Implementations
Trait Implementations
sourceimpl Clone for SelectionSet
impl Clone for SelectionSet
sourcefn clone(&self) -> SelectionSet
fn clone(&self) -> SelectionSet
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 SelectionSet
impl Debug for SelectionSet
sourceimpl Default for SelectionSet
impl Default for SelectionSet
sourcefn default() -> SelectionSet
fn default() -> SelectionSet
Returns the “default value” for a type. Read more
sourceimpl Display for SelectionSet
impl Display for SelectionSet
sourceimpl PartialEq<SelectionSet> for SelectionSet
impl PartialEq<SelectionSet> for SelectionSet
sourcefn eq(&self, other: &SelectionSet) -> bool
fn eq(&self, other: &SelectionSet) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SelectionSet) -> bool
fn ne(&self, other: &SelectionSet) -> bool
This method tests for !=
.
impl StructuralPartialEq for SelectionSet
Auto Trait Implementations
impl RefUnwindSafe for SelectionSet
impl Send for SelectionSet
impl Sync for SelectionSet
impl Unpin for SelectionSet
impl UnwindSafe for SelectionSet
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