Struct graphql_client_codegen::GraphQLClientDeriveOptions[][src]

pub struct GraphQLClientDeriveOptions {
    pub struct_name: String,
    pub additional_derives: Option<String>,
    pub deprecation_strategy: Option<DeprecationStrategy>,
}

Used to configure code generation.

Fields

Name of the operation we want to generate code for. If it does not match, we default to the first one.

Comma-separated list of additional traits we want to derive.

The deprecation strategy to adopt.

Auto Trait Implementations