Enum rml_amf0::Amf0Value [] [src]

pub enum Amf0Value {
    Number(f64),
    Boolean(bool),
    Utf8String(String),
    Object(HashMap<String, Amf0Value>),
    Null,
    Undefined,
}

An Enum representing the different supported types of Amf0 values

Variants

Methods

impl Amf0Value
[src]

Trait Implementations

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

[src]

Formats the value using the given formatter. Read more

impl Clone for Amf0Value
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Amf0Value

impl Sync for Amf0Value