Struct qt_json_rs::elements::Object[][src]

pub struct Object {
    pub size: u32,
    pub values: HashMap<String, JsonValue>,
}
Expand description

A JavaScript Object (i.e. A Map of keys and values where keys are strings)

Fields

size: u32

The number of elements in the object

values: HashMap<String, JsonValue>

All extracted values from the Object. This does not include JavaScript specific values like prototypes and functions.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.