Enum regalloc::RegAllocError [−][src]
pub enum RegAllocError {
OutOfRegisters(RegClass),
MissingSuggestedScratchReg(RegClass),
Analysis(AnalysisError),
RegChecker(CheckerErrors),
Other(String),
}
Expand description
An error from the register allocator.
Variants
OutOfRegisters(RegClass)
Tuple Fields of OutOfRegisters
0: RegClass
MissingSuggestedScratchReg(RegClass)
Tuple Fields of MissingSuggestedScratchReg
0: RegClass
Analysis(AnalysisError)
Tuple Fields of Analysis
RegChecker(CheckerErrors)
Tuple Fields of RegChecker
Other(String)
Tuple Fields of Other
0: String
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for RegAllocError
impl Send for RegAllocError
impl Sync for RegAllocError
impl Unpin for RegAllocError
impl UnwindSafe for RegAllocError
Blanket Implementations
Mutably borrows from an owned value. Read more