pub enum LoweringFlowError {
Failed(DiagnosticAdded),
Panic(VarUsage, LocationId),
Return(VarUsage, LocationId),
Match(MatchInfo),
}
Expand description
Cases where the flow of lowering an expression should halt.
Variants§
Failed(DiagnosticAdded)
Computation failure. A corresponding diagnostic should be emitted.
Panic(VarUsage, LocationId)
Return(VarUsage, LocationId)
Match(MatchInfo)
Every match arm is terminating - does not flow to parent builder e.g. returns or panics.
Implementations§
source§impl LoweringFlowError
impl LoweringFlowError
pub fn is_unreachable(&self) -> bool
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LoweringFlowError
impl RefUnwindSafe for LoweringFlowError
impl Send for LoweringFlowError
impl Sync for LoweringFlowError
impl Unpin for LoweringFlowError
impl UnwindSafe for LoweringFlowError
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more