Enum classreader::ElementValue [] [src]

pub enum ElementValue {
    Constant {
        const_value_index: u16,
    },
    EnumConstant {
        type_name_index: u16,
        const_name_index: u16,
    },
    Class {
        class_info_index: u16,
    },
    Annotation(Annotation),
    Array(Vec<ElementValue>),
}

Variants

Fields of Constant

Fields of EnumConstant

Fields of Class

Trait Implementations

impl Debug for ElementValue
[src]

Formats the value using the given formatter.