Enum rust_jvm::vm::class::MethodCode
[−]
[src]
enum MethodCode { Concrete { max_locals: u16, code: Vec<u8>, exception_table: Vec<ExceptionTableEntry>, }, Abstract, Native(NativeMethod), NativeNotFound, }
A representation of the code associated with a method, or more generally, the action that should be taken when a method is invoked.
Variants
Concrete | The code for a non- Fields
| |||||||
Abstract | to invoke an | |||||||
Native | The code for a | |||||||
NativeNotFound | The code for a |