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

Constant

Fields

const_value_index: u16
EnumConstant

Fields

type_name_index: u16
const_name_index: u16
Class

Fields

class_info_index: u16
Annotation(Annotation)Array(Vec<ElementValue>)

Trait Implementations

impl Debug for ElementValue
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.