rpgmvx_types

Struct SystemTerms

Source
pub struct SystemTerms {
Show 33 fields pub armor3: String, pub gold: String, pub skill: String, pub armor2: String, pub equip: String, pub hp: String, pub attack: String, pub agi: String, pub armor1: String, pub atk: String, pub item: String, pub armor4: String, pub weapon: String, pub guard: String, pub new_game: String, pub continue_: String, pub shutdown: String, pub to_title: String, pub cancel: String, pub weapon1: String, pub weapon2: String, pub level_a: String, pub hp_a: String, pub mp_a: String, pub save: String, pub game_end: String, pub fight: String, pub escape: String, pub mp: String, pub spi: String, pub status: String, pub level: String, pub def: String,
}

Fields§

§armor3: String§gold: String§skill: String§armor2: String§equip: String§hp: String§attack: String§agi: String§armor1: String§atk: String§item: String§armor4: String§weapon: String§guard: String§new_game: String§continue_: String§shutdown: String§to_title: String§cancel: String§weapon1: String§weapon2: String§level_a: String§hp_a: String§mp_a: String§save: String§game_end: String§fight: String§escape: String§mp: String§spi: String§status: String§level: String§def: String

Trait Implementations§

Source§

impl Debug for SystemTerms

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for SystemTerms

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<'a> FromValue<'a> for SystemTerms

Source§

fn from_value( ctx: &FromValueContext<'_>, value: &'a Value, ) -> Result<Self, FromValueError>

Create this type from the given value from the [ValueArena]. Read more
Source§

impl IntoValue for SystemTerms

Source§

fn into_value( self, arena: &mut ValueArena, ) -> Result<ValueHandle, IntoValueError>

Turn this type into a Ruby Value.
Source§

impl Serialize for SystemTerms

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

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, 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.
Source§

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