Struct async_graphql_parser::types::FragmentSpread [−][src]
pub struct FragmentSpread {
pub fragment_name: Positioned<Name>,
pub directives: Vec<Positioned<Directive>>,
}
Expand description
A fragment selector, such as ... userFields
.
Fields
fragment_name: Positioned<Name>
The name of the fragment being selected.
directives: Vec<Positioned<Directive>>
The directives in the fragment selector.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for FragmentSpread
impl Send for FragmentSpread
impl Sync for FragmentSpread
impl Unpin for FragmentSpread
impl UnwindSafe for FragmentSpread
Blanket Implementations
Mutably borrows from an owned value. Read more