Struct qt_json_rs::elements::JsonBase[][src]

pub struct JsonBase {
    pub size: u32,
    pub elements: u32,
    pub value: JsonBaseValue,
}
Expand description

This is the base element of a JSON Document.

A JSON Document can have either an Array or An Object as a Base

Fields

size: u32

The size of the overall Object (not needed in Rust)

elements: u32

The number of Elements, this base has. (Self-explainatory for Object and Array)

value: JsonBaseValue

The value of this json

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.