Type Alias foundry_compilers::compilers::vyper::VyperCompilerOutput

source ·
pub type VyperCompilerOutput = CompilerOutput<VyperCompilationError>;

Aliased Type§

struct VyperCompilerOutput {
    pub errors: Vec<VyperCompilationError>,
    pub contracts: BTreeMap<PathBuf, BTreeMap<String, Contract>>,
    pub sources: BTreeMap<PathBuf, SourceFile>,
}

Fields§

§errors: Vec<VyperCompilationError>§contracts: BTreeMap<PathBuf, BTreeMap<String, Contract>>§sources: BTreeMap<PathBuf, SourceFile>