Skip to main content

IMapOverlap_ListMethods

Trait IMapOverlap_ListMethods 

Source
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§

Source

fn index_of(self, x: impl Into<i32>, z: impl Into<i32>) -> i32

IndexOf(i32, i32) overload

Source

fn add(self, data: impl Into<MapOverlap_Data>)

Add(crate::app::mapoverlap::MapOverlap_Data) overload

Source

fn clear(self)

Clear() overload

Source

fn remove_at(self, index: impl Into<i32>)

RemoveAt(i32) overload

Source

fn create_effect(self)

CreateEffect() overload

Source

fn update_effect(self)

UpdateEffect() overload

Source

fn delete_effect(self)

DeleteEffect() overload

Source

fn get_count(self) -> i32

get_Count() overload

Source

fn get_item(self, index: impl Into<i32>) -> MapOverlap_Data

get_Item(i32) overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IMapOverlap_List> IMapOverlap_ListMethods for __T

Available on crate feature app-mapoverlap only.