Trait ComposableObject

Source
pub trait ComposableObject: GraphQLTypeAsync + Default
where Self::Context: Sync, Self::TypeInfo: Sync,
{ // Required method fn fields() -> &'static [&'static str]; }
Expand description

Object types that you want to compose into one must implement this trait. Use composable_object to implement it.

Required Methods§

Source

fn fields() -> &'static [&'static str]

Returns a list of fields that exist on this object type.

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§