pub struct BasicBlock { /* private fields */ }

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Compute variables read/written by the node. Must be called before either of the getters are called. To avoid interior mutability this needs to be called again whenever the node is mutated in a way that may invalidate the cached variable use. Read more

Get the set of variables read by the IR node.

Get the set of variables written by the IR node.

Get the set of signals read by the IR node. Note that this does not include signals belonging to sub-components. Read more

Get the set of signals written by the IR node. Note that this does not include signals belonging to sub-components. Read more

Get the set of components read by the IR node. Note that a component read is typically a signal read for a signal exported by the component. Read more

Get the set of components written by the IR node. Note that a component write may either be a component initialization, or a signal write for a signal exported by the component. Read more

Get the set of variables read by the IR node. Note that this is simply the union of all locals, signals, and components read by the node. Read more

Get the set of variables written by the IR node. Note that this is simply the union of all locals, signals, and components written. Read more

Get the set of variables either read or written by the IR node.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.