pub trait TypeName: Send + Sync {
    fn type_name() -> Cow<'static, str>;
}
Expand description

Used to specify the GraphQL Type name.

Required Methods

Returns a GraphQL type name.

Implementors