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.

Object Safety§

This trait is not object safe.

Implementors§