pub trait IMapOverlap_ListMethods: IMapOverlap_List {
// Provided methods
fn index_of(self, x: impl Into<i32>, z: impl Into<i32>) -> i32 { ... }
fn add(self, data: impl Into<MapOverlap_Data>) { ... }
fn clear(self) { ... }
fn remove_at(self, index: impl Into<i32>) { ... }
fn create_effect(self) { ... }
fn update_effect(self) { ... }
fn delete_effect(self) { ... }
fn get_count(self) -> i32 { ... }
fn get_item(self, index: impl Into<i32>) -> MapOverlap_Data { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn add(self, data: impl Into<MapOverlap_Data>)
fn add(self, data: impl Into<MapOverlap_Data>)
Add(crate::app::mapoverlap::MapOverlap_Data) overload
Sourcefn create_effect(self)
fn create_effect(self)
CreateEffect() overload
Sourcefn update_effect(self)
fn update_effect(self)
UpdateEffect() overload
Sourcefn delete_effect(self)
fn delete_effect(self)
DeleteEffect() overload
Sourcefn get_item(self, index: impl Into<i32>) -> MapOverlap_Data
fn get_item(self, index: impl Into<i32>) -> MapOverlap_Data
get_Item(i32) overload
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.
Implementors§
impl<__T: IMapOverlap_List> IMapOverlap_ListMethods for __T
Available on crate feature
app-mapoverlap only.