noak 0.6.3

A library for reading and writing java class files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::{
    mutf8,
    reader::{cpool, decoding::*},
    MStr,
};

use super::FromAttribute;

dec_structure! {
    pub struct ConstantValue<'input> into {
        value: cpool::Index<cpool::Item<'input>>,
    }
}

impl<'input> FromAttribute<'input> for ConstantValue<'input> {
    const NAME: &'static MStr = mutf8!("ConstantValue");
}