pub struct ClassFile {
pub constant_pool: ConstantPool,
pub main_method_bytecode: Vec<JvmInstruction>,
pub max_locals: usize,
pub max_stack: usize,
pub methods: HashMap<String, MethodInfo>,
}Fields§
§constant_pool: ConstantPool§main_method_bytecode: Vec<JvmInstruction>§max_locals: usize§max_stack: usize§methods: HashMap<String, MethodInfo>Auto Trait Implementations§
impl Freeze for ClassFile
impl RefUnwindSafe for ClassFile
impl Send for ClassFile
impl Sync for ClassFile
impl Unpin for ClassFile
impl UnwindSafe for ClassFile
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