Enum pdb::Variant [] [src]

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

Variants

Trait Implementations

impl Debug for Variant
[src]

[src]

Formats the value using the given formatter.

impl Copy for Variant
[src]

impl Clone for Variant
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Variant
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for Variant
[src]