pub struct System {Show 26 fields
pub game_title: String,
pub version_id: i32,
pub party_members: Vec<i32>,
pub elements: Vec<Option<String>>,
pub switches: Vec<Option<String>>,
pub variables: Vec<Option<String>>,
pub passages: Table,
pub boat: SystemVehicle,
pub ship: SystemVehicle,
pub airship: SystemVehicle,
pub title_bgm: Bgm,
pub battle_bgm: Bgm,
pub battle_end_me: Me,
pub gameover_me: Me,
pub sounds: Vec<Se>,
pub test_battlers: Vec<SystemTestBattler>,
pub test_troop_id: i32,
pub start_map_id: i32,
pub start_x: i32,
pub start_y: i32,
pub terms: SystemTerms,
pub battler_name: String,
pub battler_hue: i32,
pub edit_map_id: i32,
pub underscore: i32,
pub magic_number: i32,
}
Fields§
§game_title: String
§version_id: i32
§party_members: Vec<i32>
§elements: Vec<Option<String>>
§switches: Vec<Option<String>>
§variables: Vec<Option<String>>
§passages: Table
§boat: SystemVehicle
§ship: SystemVehicle
§airship: SystemVehicle
§title_bgm: Bgm
§battle_bgm: Bgm
§battle_end_me: Me
§gameover_me: Me
§sounds: Vec<Se>
§test_battlers: Vec<SystemTestBattler>
§test_troop_id: i32
§start_map_id: i32
§start_x: i32
§start_y: i32
§terms: SystemTerms
§battler_name: String
§battler_hue: i32
§edit_map_id: i32
§underscore: i32
§magic_number: i32
Trait Implementations§
Source§impl<'de> Deserialize<'de> for System
impl<'de> Deserialize<'de> for System
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 System
impl<'a> FromValue<'a> for System
Source§fn from_value(
ctx: &FromValueContext<'_>,
value: &'a Value,
) -> Result<Self, FromValueError>
fn from_value( ctx: &FromValueContext<'_>, value: &'a Value, ) -> Result<Self, FromValueError>
Create this type from the given value from the [
ValueArena
]. Read moreAuto Trait Implementations§
impl Freeze for System
impl RefUnwindSafe for System
impl Send for System
impl Sync for System
impl Unpin for System
impl UnwindSafe for System
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more