Enum pdb::EnumValue [] [src]

pub enum EnumValue {
    U8(u8),
    U16(u16),
    U32(u32),
    U64(u64),
    I8(i8),
    I16(i16),
    I32(i32),
    I64(i64),
}

Variants

Trait Implementations

impl Debug for EnumValue
[src]

Formats the value using the given formatter.

impl Copy for EnumValue
[src]

impl Clone for EnumValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for EnumValue
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for EnumValue
[src]