Trait cynic::queries::Recursable

source ·
pub trait Recursable<T>: Sealed { }
Expand description

Encodes the rules for whether a type can have the #[cynic(recurse)] attribute applied.

See the relevant section of the book for more details.

This type is sealed so users can’t implement it.

Implementations on Foreign Types§

source§

impl<T> Recursable<Option<T>> for Option<T>

source§

impl<T> Recursable<T> for Option<T>

Implementors§