rpgmxp_tool::util

Trait ArrayLikeElement

Source
pub trait ArrayLikeElement<'a>:
    Deserialize<'a>
    + Serialize
    + FromValue<'a>
    + IntoValue {
    // Required methods
    fn type_display_name() -> &'static str;
    fn name(&self) -> &str;
}
Expand description

A trait to represent objects stored in *.rxdata files as elements of an array.

Required Methods§

Source

fn type_display_name() -> &'static str

Get the display name of this type

Source

fn name(&self) -> &str

Get the name of this element.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl ArrayLikeElement<'_> for Actor

Source§

fn type_display_name() -> &'static str

Source§

fn name(&self) -> &str

Source§

impl ArrayLikeElement<'_> for Animation

Source§

fn type_display_name() -> &'static str

Source§

fn name(&self) -> &str

Source§

impl ArrayLikeElement<'_> for Armor

Source§

fn type_display_name() -> &'static str

Source§

fn name(&self) -> &str

Source§

impl ArrayLikeElement<'_> for Class

Source§

fn type_display_name() -> &'static str

Source§

fn name(&self) -> &str

Source§

impl ArrayLikeElement<'_> for CommonEvent

Source§

fn type_display_name() -> &'static str

Source§

fn name(&self) -> &str

Source§

impl ArrayLikeElement<'_> for Enemy

Source§

fn type_display_name() -> &'static str

Source§

fn name(&self) -> &str

Source§

impl ArrayLikeElement<'_> for Item

Source§

fn type_display_name() -> &'static str

Source§

fn name(&self) -> &str

Source§

impl ArrayLikeElement<'_> for Skill

Source§

fn type_display_name() -> &'static str

Source§

fn name(&self) -> &str

Source§

impl ArrayLikeElement<'_> for State

Source§

fn type_display_name() -> &'static str

Source§

fn name(&self) -> &str

Source§

impl ArrayLikeElement<'_> for Tileset

Source§

fn type_display_name() -> &'static str

Source§

fn name(&self) -> &str

Source§

impl ArrayLikeElement<'_> for Troop

Source§

fn type_display_name() -> &'static str

Source§

fn name(&self) -> &str

Source§

impl ArrayLikeElement<'_> for Weapon

Source§

fn type_display_name() -> &'static str

Source§

fn name(&self) -> &str

Implementors§