pclass-parser 0.1.0

https://github.com/phodal/pclass-parser
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::classfile::attributes::Type;
use crate::classfile::types::U2;

#[derive(Debug)]
pub struct FieldInfo {
    pub acc_flags: U2,
    pub name_index: U2,
    pub desc_index: U2,
    pub attrs: Vec<Type>,
}