pub struct FieldInstance {
    pub identifier: String,
    pub tile: Option<TilesetRectangle>,
    pub field_instance_type: String,
    pub value: Option<Value>,
    pub def_uid: i64,
    pub real_editor_values: Vec<Option<Value>>,
}

Fields

identifier: String

Field definition identifier

tile: Option<TilesetRectangle>

Optional TilesetRect used to display this field (this can be the field own Tile, or some other Tile guessed from the value, like an Enum).

field_instance_type: String

Type of the field, such as Int, Float, String, Enum(my_enum_name), Bool, etc.
NOTE: if you enable the advanced option Use Multilines type, you will have “Multilines” instead of “String” when relevant.

value: Option<Value>

Actual value of the field instance. The value type varies, depending on __type:

  • For classic types (ie. Integer, Float, Boolean, String, Text and FilePath), you just get the actual value with the expected type.
    - For Color, the value is an hexadecimal string using “#rrggbb” format.
    - For Enum, the value is a String representing the selected enum value.
    - For Point, the value is a GridPoint object.
    - For Tile, the value is a TilesetRect object.
    - For EntityRef, the value is an EntityReferenceInfos object.

    If the field is an array, then this __value will also be a JSON array.
def_uid: i64

Reference of the Field definition UID

real_editor_values: Vec<Option<Value>>

Editor internal raw values

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. 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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

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.