Trait async_graphql::resolver_utils::EnumType[][src]

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

A GraphQL enum.

Required methods

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

Implementors