Skip to main content

Lang

Struct Lang 

Source
pub struct Lang {
Show 44 fields pub hud_cuques: &'static str, pub hud_fps: &'static str, pub fps_unit: &'static str, pub help_game: &'static str, pub help_stats: &'static str, pub help_ach: &'static str, pub fingerers_title: &'static str, pub owned: &'static str, pub cost: &'static str, pub fps_each: &'static str, pub fingerer_names: &'static [&'static str], pub stats_title: &'static str, pub stat_session_time: &'static str, pub stat_total_time: &'static str, pub stat_total_clicks: &'static str, pub stat_lifetime_cuques: &'static str, pub stat_best_fps: &'static str, pub stat_achievements: &'static str, pub stat_fingerers_owned: &'static str, pub stat_golden_caught: &'static str, pub stat_lucky_caught: &'static str, pub stat_frenzy_caught: &'static str, pub stat_buff_caught: &'static str, pub stat_green_coin_caught: &'static str, pub achievements_title: &'static str, pub ach_unlocked: &'static str, pub ach_locked: &'static str, pub ach_summary: &'static str, pub achievement_names: &'static [&'static str], pub achievement_descs: &'static [&'static str], pub upgrades_title: &'static str, pub upgrades_none: &'static str, pub upgrade_names: &'static [&'static str], pub upgrade_descs: &'static [&'static str], pub help_upgrades: &'static str, pub prestige_title: &'static str, pub prestige_currency: &'static str, pub prestige_owned_label: &'static str, pub prestige_bonus_label: &'static str, pub prestige_available_label: &'static str, pub prestige_lifetime_needed: &'static str, pub prestige_confirm_hint: &'static str, pub prestige_not_enough: &'static str, pub help_prestige: &'static str,
}

Fields§

§hud_cuques: &'static str§hud_fps: &'static str§fps_unit: &'static str

Short form of the FPS/DPS acronym (no trademark, no expansion). Used in inline strings like “+5% FPS” / “+5% DPS” where the long form would be too noisy.

§help_game: &'static str§help_stats: &'static str§help_ach: &'static str§fingerers_title: &'static str§owned: &'static str§cost: &'static str§fps_each: &'static str§fingerer_names: &'static [&'static str]§stats_title: &'static str§stat_session_time: &'static str§stat_total_time: &'static str§stat_total_clicks: &'static str§stat_lifetime_cuques: &'static str§stat_best_fps: &'static str§stat_achievements: &'static str§stat_fingerers_owned: &'static str§stat_golden_caught: &'static str§stat_lucky_caught: &'static str§stat_frenzy_caught: &'static str§stat_buff_caught: &'static str§stat_green_coin_caught: &'static str§achievements_title: &'static str§ach_unlocked: &'static str§ach_locked: &'static str§ach_summary: &'static str§achievement_names: &'static [&'static str]§achievement_descs: &'static [&'static str]§upgrades_title: &'static str§upgrades_none: &'static str§upgrade_names: &'static [&'static str]§upgrade_descs: &'static [&'static str]§help_upgrades: &'static str§prestige_title: &'static str§prestige_currency: &'static str§prestige_owned_label: &'static str§prestige_bonus_label: &'static str§prestige_available_label: &'static str§prestige_lifetime_needed: &'static str§prestige_confirm_hint: &'static str§prestige_not_enough: &'static str§help_prestige: &'static str

Auto Trait Implementations§

§

impl Freeze for Lang

§

impl RefUnwindSafe for Lang

§

impl Send for Lang

§

impl Sync for Lang

§

impl Unpin for Lang

§

impl UnsafeUnpin for Lang

§

impl UnwindSafe for Lang

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.