cynic 3.13.2

A code first GraphQL client for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![doc(hidden)]
//! This module contains private code used by the derives.
//!
//! The API in here is absolutely unstable and should not be used by user code.

mod content;
mod cow_str;
mod flatten_de;
mod inline_fragment_de;
mod key_de;
mod spread_de;

pub use self::{
    flatten_de::Flattened, inline_fragment_de::InlineFragmentVisitor, spread_de::Spreadable,
};