Struct ldtk2::FieldDefinition[][src]

pub struct FieldDefinition {
Show 18 fields pub field_definition_type: String, pub accept_file_types: Option<Vec<String>>, pub array_max_length: Option<i64>, pub array_min_length: Option<i64>, pub can_be_null: bool, pub default_override: Option<Value>, pub editor_always_show: bool, pub editor_cut_long_values: bool, pub editor_display_mode: EditorDisplayMode, pub editor_display_pos: EditorDisplayPos, pub identifier: String, pub is_array: bool, pub max: Option<f64>, pub min: Option<f64>, pub regex: Option<String>, pub text_language_mode: Option<TextLanguageMode>, pub purple_type: Option<Value>, pub uid: i64,
}
Expand description

This section is mostly only intended for the LDtk editor app itself. You can safely ignore it.

Fields

field_definition_type: String

Human readable value type (eg. Int, Float, Point, etc.). If the field is an array, this field will look like Array<...> (eg. Array<Int>, Array<Point> etc.)

accept_file_types: Option<Vec<String>>

Optional list of accepted file extensions for FilePath value type. Includes the dot: .ext

array_max_length: Option<i64>

Array max length

array_min_length: Option<i64>

Array min length

can_be_null: bool

TRUE if the value can be null. For arrays, TRUE means it can contain null values (exception: array of Points can’t have null values).

default_override: Option<Value>

Default value if selected value is null or invalid.

editor_always_show: booleditor_cut_long_values: booleditor_display_mode: EditorDisplayMode

Possible values: Hidden, ValueOnly, NameAndValue, EntityTile, Points, PointStar, PointPath, PointPathLoop, RadiusPx, RadiusGrid

editor_display_pos: EditorDisplayPos

Possible values: Above, Center, Beneath

identifier: String

Unique String identifier

is_array: bool

TRUE if the value is an array of multiple values

max: Option<f64>

Max limit for value, if applicable

min: Option<f64>

Min limit for value, if applicable

regex: Option<String>

Optional regular expression that needs to be matched to accept values. Expected format: /some_reg_ex/g, with optional “i” flag.

text_language_mode: Option<TextLanguageMode>

Possible values: <null>, LangPython, LangRuby, LangJS, LangLua, LangC, LangHaxe, LangMarkdown, LangJson, LangXml

purple_type: Option<Value>

Internal type enum

uid: i64

Unique Int identifier

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

Performs the conversion.

Performs the conversion.

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)

recently added

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.