Enum swf_tree::avm1::actions::Value [] [src]

pub enum Value {
    CString(String),
    F32(OrderedFloat<f32>),
    Null,
    Undefined,
    Register(u8),
    Boolean(bool),
    F64(OrderedFloat<f64>),
    I32(i32),
    Constant(u16),
}

Variants

Trait Implementations

impl Debug for Value
[src]

Formats the value using the given formatter.

impl PartialEq for Value
[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 Value
[src]