Enum som_interpreter_bc::frame::FrameKind
source · pub enum FrameKind {
Block {
block: Rc<Block>,
},
Method {
holder: SOMRef<Class>,
method: Rc<Method>,
self_value: Value,
},
}
Expand description
The kind of a given frame.
Variants§
Block
A frame created from a block evaluation.
Method
Fields
A frame created from a method invocation.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FrameKind
impl !RefUnwindSafe for FrameKind
impl !Send for FrameKind
impl !Sync for FrameKind
impl Unpin for FrameKind
impl !UnwindSafe for FrameKind
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more