[][src]Struct tarkov::constant::Localization

pub struct Localization {
    pub interface: HashMap<String, String>,
    pub enums: Value,
    pub error: HashMap<String, String>,
    pub mail: HashMap<String, StringOrInt>,
    pub quest: HashMap<String, Quest>,
    pub preset: HashMap<String, Preset>,
    pub handbook: HashMap<String, String>,
    pub season: HashMap<String, String>,
    pub items: HashMap<String, ItemLocalization>,
    pub locations: HashMap<String, LocationLocalization>,
    pub banners: HashMap<String, BannerLocalization>,
    pub traders: HashMap<String, TraderLocalization>,
}

EFT localization table

Fields

interface: HashMap<String, String>

Localization table for UI elements.

enums: Value

Unknown type

error: HashMap<String, String>

Localization table for errors.

mail: HashMap<String, StringOrInt>

Localization table for automated messages (eg, from traders).

quest: HashMap<String, Quest>

Localization table for quest missions.

preset: HashMap<String, Preset>

?

handbook: HashMap<String, String>

Localization table for flea market categories.

season: HashMap<String, String>

Localization table for seasons.

items: HashMap<String, ItemLocalization>

Localization table for items.

locations: HashMap<String, LocationLocalization>

Localization table for locations/maps.

banners: HashMap<String, BannerLocalization>

Localization table for banners.

traders: HashMap<String, TraderLocalization>

Localization table for traders.

Trait Implementations

impl Clone for Localization[src]

impl Debug for Localization[src]

impl<'de> Deserialize<'de> for Localization[src]

impl PartialEq<Localization> for Localization[src]

impl Serialize for Localization[src]

impl StructuralPartialEq for Localization[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,