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: PathBufThe 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
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for CodegenConfigimpl Send for CodegenConfigimpl Sync for CodegenConfigimpl Unpin for CodegenConfigimpl UnwindSafe for CodegenConfig