Enum cairo_lang_lowering::objects::FlatBlockEnd
source · pub enum FlatBlockEnd {
NotSet,
Return(Vec<VarUsage>),
Panic(VarUsage),
Goto(BlockId, VarRemapping),
Match {
info: MatchInfo,
},
}
Expand description
Describes what happens to the program flow at the end of a FlatBlock
.
Variants§
NotSet
The block was created but still needs to be populated. Block must not be in this state in the end of the lowering phase.
Return(Vec<VarUsage>)
This block ends with a return
statement, exiting the function.
Panic(VarUsage)
This block ends with a panic.
Goto(BlockId, VarRemapping)
This block ends with a jump to a different block.
Match
Trait Implementations§
source§impl Clone for FlatBlockEnd
impl Clone for FlatBlockEnd
source§fn clone(&self) -> FlatBlockEnd
fn clone(&self) -> FlatBlockEnd
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for FlatBlockEnd
impl Debug for FlatBlockEnd
source§impl DebugWithDb<LoweredFormatter<'_>> for FlatBlockEnd
impl DebugWithDb<LoweredFormatter<'_>> for FlatBlockEnd
source§impl PartialEq for FlatBlockEnd
impl PartialEq for FlatBlockEnd
source§fn eq(&self, other: &FlatBlockEnd) -> bool
fn eq(&self, other: &FlatBlockEnd) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for FlatBlockEnd
impl StructuralEq for FlatBlockEnd
impl StructuralPartialEq for FlatBlockEnd
Auto Trait Implementations§
impl RefUnwindSafe for FlatBlockEnd
impl Send for FlatBlockEnd
impl Sync for FlatBlockEnd
impl Unpin for FlatBlockEnd
impl UnwindSafe for FlatBlockEnd
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.