[][src]Struct juniper::meta::UnionMeta

pub struct UnionMeta<'a> { /* fields omitted */ }

Union type metadata

Methods

impl<'a> UnionMeta<'a>[src]

pub fn new(name: Cow<'a, str>, of_types: &[Type]) -> UnionMeta<'a>[src]

Build a new union type with the specified name and possible types

pub fn description(self, description: &str) -> UnionMeta<'a>[src]

Set the description of the type

If a description was provided prior to calling this method, it will be overwritten.

pub fn into_meta<S>(self) -> MetaType<'a, S>[src]

Wrap this union type in a generic meta type

Trait Implementations

impl<'a> Debug for UnionMeta<'a>[src]

Auto Trait Implementations

impl<'a> Send for UnionMeta<'a>

impl<'a> Sync for UnionMeta<'a>

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]