Trait FrameStack

Source
pub trait FrameStack {
    // Required method
    fn current_frame(&self) -> Option<FrameKind>;
}
Expand description

A trait representing the stack of frames within a function.

The BinaryReader::visit_operator and OperatorsReaders type use information about the current frame kind to enforce the syntactic requirements of the binary format.

Required Methods§

Source

fn current_frame(&self) -> Option<FrameKind>

The current frame kind.

Implementors§