Struct apollo_encoder::UnionDefinition 
source · [−]pub struct UnionDefinition { /* private fields */ }Expand description
UnionDefinitions are an abstract type where no common fields are declared.
UnionDefTypeDefinition: Description? union Name Directives? UnionDefMemberTypes?
Detailed documentation can be found in GraphQL spec.
Example
use apollo_encoder::UnionDefinition;
let mut union_ = UnionDefinition::new("Pet".to_string());
union_.member("Cat".to_string());
union_.member("Dog".to_string());
assert_eq!(
    union_.to_string(),
r#"union Pet = Cat | Dog
"#
);Implementations
sourceimpl UnionDefinition
 
impl UnionDefinition
sourcepub fn description(&mut self, description: String)
 
pub fn description(&mut self, description: String)
Set the UnionDefs description.
Trait Implementations
sourceimpl Clone for UnionDefinition
 
impl Clone for UnionDefinition
sourcefn clone(&self) -> UnionDefinition
 
fn clone(&self) -> UnionDefinition
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 UnionDefinition
 
impl Debug for UnionDefinition
sourceimpl Display for UnionDefinition
 
impl Display for UnionDefinition
sourceimpl PartialEq<UnionDefinition> for UnionDefinition
 
impl PartialEq<UnionDefinition> for UnionDefinition
sourcefn eq(&self, other: &UnionDefinition) -> bool
 
fn eq(&self, other: &UnionDefinition) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &UnionDefinition) -> bool
 
fn ne(&self, other: &UnionDefinition) -> bool
This method tests for !=.
impl StructuralPartialEq for UnionDefinition
Auto Trait Implementations
impl RefUnwindSafe for UnionDefinition
impl Send for UnionDefinition
impl Sync for UnionDefinition
impl Unpin for UnionDefinition
impl UnwindSafe for UnionDefinition
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