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§
Sourcefn type_display_name() -> &'static str
fn type_display_name() -> &'static str
Get the display name of this type
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.