Trait rune::DumpInstructions[][src]

pub trait DumpInstructions {
    fn dump_instructions<O>(
        &self,
        out: &mut O,
        sources: &Sources,
        with_source: bool
    ) -> Result<()>
    where
        O: WriteColor
; }
Expand description

Trait to dump the instructions of a unit to the given writer.

This is implemented for Unit.

Required methods

Dump the instructions of the current unit to the given writer.

Implementations on Foreign Types

Implementors