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