pub struct Map {Show 18 fields
pub height: i32,
pub parallax_name: String,
pub events: HashMap<i32, Event>,
pub bgm: Bgm,
pub parallax_sx: i32,
pub width: i32,
pub encounter_step: i32,
pub bgs: Bgs,
pub data: Table,
pub autoplay_bgm: bool,
pub parallax_loop_y: bool,
pub encounter_list: Vec<i32>,
pub autoplay_bgs: bool,
pub parallax_show: bool,
pub scroll_type: i32,
pub parallax_loop_x: bool,
pub disable_dashing: bool,
pub parallax_sy: i32,
}
Expand description
A Map
Fields§
§height: i32
§parallax_name: String
§events: HashMap<i32, Event>
§bgm: Bgm
§parallax_sx: i32
§width: i32
§encounter_step: i32
§bgs: Bgs
§data: Table
§autoplay_bgm: bool
§parallax_loop_y: bool
§encounter_list: Vec<i32>
I haven’t encountered a non-empty field here. If you see one open an issue.
autoplay_bgs: bool
§parallax_show: bool
§scroll_type: i32
§parallax_loop_x: bool
§disable_dashing: bool
§parallax_sy: i32
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Map
impl<'de> Deserialize<'de> for Map
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 Map
impl<'a> FromValue<'a> for Map
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 Map
impl RefUnwindSafe for Map
impl Send for Map
impl Sync for Map
impl Unpin for Map
impl UnwindSafe for Map
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