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§
Source§impl Debug for CodegenConfig
impl Debug for CodegenConfig
Source§impl<'de> Deserialize<'de> for CodegenConfig
impl<'de> Deserialize<'de> for CodegenConfig
Source§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
Source§impl FromStr for CodegenConfig
impl FromStr for CodegenConfig
Auto Trait Implementations§
impl Freeze for CodegenConfig
impl RefUnwindSafe for CodegenConfig
impl Send for CodegenConfig
impl Sync for CodegenConfig
impl Unpin for CodegenConfig
impl UnwindSafe for CodegenConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more