[][src]Enum jvm_class_file_parser::ConstantPoolEntry

pub enum ConstantPoolEntry {
    ConstantUtf8 {
        string: String,
    },
    ConstantClass {
        name_index: u16,
    },
    ConstantString {
        string_index: u16,
    },
    ConstantFieldref {
        class_index: u16,
        name_and_type_index: u16,
    },
    ConstantMethodref {
        class_index: u16,
        name_and_type_index: u16,
    },
    ConstantNameAndType {
        name_index: u16,
        descriptor_index: u16,
    },
}

Variants

ConstantUtf8

Fields of ConstantUtf8

string: String
ConstantClass

Fields of ConstantClass

name_index: u16
ConstantString

Fields of ConstantString

string_index: u16
ConstantFieldref

Fields of ConstantFieldref

class_index: u16name_and_type_index: u16
ConstantMethodref

Fields of ConstantMethodref

class_index: u16name_and_type_index: u16
ConstantNameAndType

Fields of ConstantNameAndType

name_index: u16descriptor_index: u16

Trait Implementations

impl Eq for ConstantPoolEntry[src]

impl PartialEq<ConstantPoolEntry> for ConstantPoolEntry[src]

impl Debug for ConstantPoolEntry[src]

Auto Trait Implementations

impl Send for ConstantPoolEntry

impl Sync for ConstantPoolEntry

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.