pclass-parser 0.1.0

https://github.com/phodal/pclass-parser
Documentation
1
2
3
4
5
6
7
8
use crate::classfile::constant_pool;
use std::sync::Arc;

pub type U1 = u8;
pub type U2 = u16;
pub type U4 = u32;
pub type BytesRef = Arc<Vec<u8>>;
pub type ConstantPool = Arc<Vec<constant_pool::Type>>;