Struct weld_codegen::config::CodegenConfig[][src]

pub struct CodegenConfig {
    pub models: Vec<ModelSource>,
    pub output_languages: Vec<OutputLanguage>,
    pub languages: BTreeMap<OutputLanguage, LanguageConfig>,
    pub base_dir: PathBuf,
}

Fields

models: Vec<ModelSource>

model inputs

output_languages: Vec<OutputLanguage>

This can be set by the cli to limit the languages generated. Without this flag, all languages in the toml file are generated.

languages: BTreeMap<OutputLanguage, LanguageConfig>

Language-specific output configuration

base_dir: PathBuf

The directory containing the codegen.toml file, and the base_dir used for evaluating all relative paths in the file. This is not set inside the toml file but is set by the file reader, It is always set to an absolute path

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more