pub struct ExtendedLocalizedString {
Show 17 fields pub en_gb: String, pub ko_kr: String, pub fr_fr: String, pub de_de: String, pub en_cn: String, pub en_tw: String, pub es_es: String, pub es_mx: String, pub ru_ru: String, pub ja_jp: String, pub pt_pt: String, pub it_it: String, pub unknown_12: String, pub unknown_13: String, pub unknown_14: String, pub unknown_15: String, pub flags: u32,
}
Available on crate features tbc or wrath only.
Expand description

DBCs from the English version of the game will only have English version strings, while other localizations will have other languages.

You are most likely interested in, LocalizedString::en_gb, the English version.

Fields

en_gb: String

English, Great Britain

ko_kr: String

Korean, Korea

fr_fr: String

French, France

de_de: String

German, Germany

en_cn: String

English, China

en_tw: String

English, Taiwan

es_es: String

Spanish, Spain

es_mx: String

Spanish, Mexico

ru_ru: String

Russian, Russia

ja_jp: String

Japanese, Japan

pt_pt: String

Portuguese, Portugal

Also works as Portuguese, Brazil

it_it: String

Italian, Italy

unknown_12: String

Possibly unused.

unknown_13: String

Possibly unused.

unknown_14: String

Possibly unused.

unknown_15: String

Possibly unused.

flags: u32

Unknown flags.

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
Returns the “default value” for a type. Read more
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
This method returns an Ordering between self and other. Read more
Compares and returns the maximum of two values. Read more
Compares and returns the minimum of two values. Read more
Restrict a value to a certain interval. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
This method tests greater than or equal to (for self and other) and is used by the >= operator. 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
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.