Struct hir::ir::BasicBlock [] [src]

pub struct BasicBlock {
    pub label: Option<NodeId>,
    pub instructions: Vec<NodeId>,
    pub next: Option<NodeId>,
    // some fields omitted
}

Fields

A pointer to the label which defines this basic block, if there is one.

Methods

impl BasicBlock
[src]

Trait Implementations

impl Debug for BasicBlock
[src]

Formats the value using the given formatter. Read more

impl Default for BasicBlock
[src]

Returns the "default value" for a type. Read more

impl Clone for BasicBlock
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for BasicBlock
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl HeapSizeOf for BasicBlock
[src]

Measure the size of any heap-allocated structures that hang off this value, but not the space taken up by the value itself (i.e. what size_of:: measures, more or less); that space is handled by the implementation of HeapSizeOf for Box below. Read more

impl IrNode for BasicBlock
[src]

Auto Trait Implementations

impl Send for BasicBlock

impl Sync for BasicBlock