Struct wash_lib::parser::ProjectConfig
source · pub struct ProjectConfig {
pub language: LanguageConfig,
pub project_type: TypeConfig,
pub common: CommonConfig,
}Fields§
§language: LanguageConfigThe language of the project, e.g. rust, tinygo. Contains specific configuration for that language.
project_type: TypeConfigThe type of project, e.g. actor, provider, interface. Contains the specific configuration for that type. This is renamed to “type” but is named project_type here to avoid clashing with the type keyword in Rust.
common: CommonConfigConfiguration common amoung all project types & languages.
Trait Implementations§
source§impl Clone for ProjectConfig
impl Clone for ProjectConfig
source§fn clone(&self) -> ProjectConfig
fn clone(&self) -> ProjectConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ProjectConfig
impl Debug for ProjectConfig
source§impl<'de> Deserialize<'de> for ProjectConfig
impl<'de> Deserialize<'de> for ProjectConfig
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