Struct cairo_lang_lowering::objects::StructuredLowered
source · pub struct StructuredLowered {
pub diagnostics: Diagnostics<LoweringDiagnostic>,
pub root: Maybe<BlockId>,
pub variables: Arena<Variable>,
pub blocks: StructuredBlocks,
}
Expand description
A lowered function code.
Fields§
§diagnostics: Diagnostics<LoweringDiagnostic>
Diagnostics produced while lowering.
root: Maybe<BlockId>
Block id for the start of the lowered function.
variables: Arena<Variable>
Arena of allocated lowered variables.
blocks: StructuredBlocks
Arena of allocated lowered blocks.
Trait Implementations§
source§impl Debug for StructuredLowered
impl Debug for StructuredLowered
source§impl DebugWithDb<LoweredFormatter<'_>> for StructuredLowered
impl DebugWithDb<LoweredFormatter<'_>> for StructuredLowered
source§impl PartialEq<StructuredLowered> for StructuredLowered
impl PartialEq<StructuredLowered> for StructuredLowered
source§fn eq(&self, other: &StructuredLowered) -> bool
fn eq(&self, other: &StructuredLowered) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for StructuredLowered
impl StructuralEq for StructuredLowered
impl StructuralPartialEq for StructuredLowered
Auto Trait Implementations§
impl RefUnwindSafe for StructuredLowered
impl Send for StructuredLowered
impl Sync for StructuredLowered
impl Unpin for StructuredLowered
impl UnwindSafe for StructuredLowered
Blanket Implementations§
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.