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>, }