pub trait IMapHistory_ReplayAppearanceMap: ISingletonClass_1<MapHistory_ReplayAppearanceMap> {
// Provided methods
fn m_appearances(self) -> Array<MapHistory_ReplayAppearanceMap_Appearance> { ... }
fn set_m_appearances(
self,
value: Array<MapHistory_ReplayAppearanceMap_Appearance>,
) { ... }
fn m_appearance_count(self) -> i32 { ... }
fn set_m_appearance_count(self, value: i32) { ... }
fn m_leavings(self) -> Array<MapHistory_ReplayAppearanceMap_Leaving> { ... }
fn set_m_leavings(
self,
value: Array<MapHistory_ReplayAppearanceMap_Leaving>,
) { ... }
fn m_leaving_count(self) -> i32 { ... }
fn set_m_leaving_count(self, value: i32) { ... }
fn m_ret_appearance_indexes(self) -> Array<i32> { ... }
fn set_m_ret_appearance_indexes(self, value: Array<i32>) { ... }
fn m_ret_leaving_indexes(self) -> Array<i32> { ... }
fn set_m_ret_leaving_indexes(self, value: Array<i32>) { ... }
}Provided Methods§
fn m_appearances(self) -> Array<MapHistory_ReplayAppearanceMap_Appearance>
fn set_m_appearances( self, value: Array<MapHistory_ReplayAppearanceMap_Appearance>, )
fn m_appearance_count(self) -> i32
fn set_m_appearance_count(self, value: i32)
fn m_leavings(self) -> Array<MapHistory_ReplayAppearanceMap_Leaving>
fn set_m_leavings(self, value: Array<MapHistory_ReplayAppearanceMap_Leaving>)
fn m_leaving_count(self) -> i32
fn set_m_leaving_count(self, value: i32)
fn m_ret_appearance_indexes(self) -> Array<i32>
fn set_m_ret_appearance_indexes(self, value: Array<i32>)
fn m_ret_leaving_indexes(self) -> Array<i32>
fn set_m_ret_leaving_indexes(self, value: Array<i32>)
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.