async_graphql::resolver_utils

Trait EnumType

Source
pub trait EnumType:
    Sized
    + Eq
    + Send
    + Copy
    + Sized
    + 'static {
    // Required method
    fn items() -> &'static [EnumItem<Self>];
}
Expand description

A GraphQL enum.

Required Methods§

Source

fn items() -> &'static [EnumItem<Self>]

Get a list of possible variants of the enum and their values.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§