pub enum SSAError {
UndefinedVariableError {
name: String,
file_id: Option<FileID>,
location: FileLocation,
},
}Expand description
Error enum for SSA generation errors.
Variants§
UndefinedVariableError
The variable is read before it is declared/written.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SSAError
impl RefUnwindSafe for SSAError
impl Send for SSAError
impl Sync for SSAError
impl Unpin for SSAError
impl UnwindSafe for SSAError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more