Enum sway_core::CompilationResult
source · [−]pub enum CompilationResult {
Success {
asm: FinalizedAsm,
warnings: Vec<CompileWarning>,
},
Library {
name: Ident,
namespace: NamespaceRef,
warnings: Vec<CompileWarning>,
},
Failure {
warnings: Vec<CompileWarning>,
errors: Vec<CompileError>,
},
}
Expand description
Represents the result of compiling Sway code via compile_to_asm. Contains the compiled assets or resulting errors, and any warnings generated.