pub trait INexVersus_TargetSlotListMethods: INexVersus_TargetSlotList {
Show 13 methods
// Provided methods
fn ctor(self) { ... }
fn add(self, id: impl Into<u64>) { ... }
fn add_2(self, list: impl Into<List_1<u64>>) { ... }
fn clear(self) { ... }
fn get_count(self) -> i32 { ... }
fn get_count_valid(self) -> i32 { ... }
fn get_id_list(self) -> List_1<u64> { ... }
fn set_result(
self,
id: impl Into<u64>,
result: impl Into<NexVersus_TargetSlotList_Results>,
) { ... }
fn get_result(self, id: impl Into<u64>) -> NexVersus_TargetSlotList_Results { ... }
fn is_valid(self, id: impl Into<u64>) -> bool { ... }
fn dump(self) -> Il2CppString { ... }
fn for_each(
self,
action: impl Into<Action_2<u64, NexVersus_TargetSlotList_Results>>,
) { ... }
fn for_each_2(
self,
action: impl Into<Action_3<i32, u64, NexVersus_TargetSlotList_Results>>,
) { ... }
}Provided Methods§
Sourcefn add_2(self, list: impl Into<List_1<u64>>)
fn add_2(self, list: impl Into<List_1<u64>>)
Add(crate::system::collections::generic::list_1::List_1<u64>) overload
Sourcefn get_count_valid(self) -> i32
fn get_count_valid(self) -> i32
GetCountValid() overload
Sourcefn get_id_list(self) -> List_1<u64>
fn get_id_list(self) -> List_1<u64>
GetIDList() overload
Sourcefn set_result(
self,
id: impl Into<u64>,
result: impl Into<NexVersus_TargetSlotList_Results>,
)
fn set_result( self, id: impl Into<u64>, result: impl Into<NexVersus_TargetSlotList_Results>, )
SetResult(u64, crate::app::nexversus::NexVersus_TargetSlotList_Results) overload
Sourcefn get_result(self, id: impl Into<u64>) -> NexVersus_TargetSlotList_Results
fn get_result(self, id: impl Into<u64>) -> NexVersus_TargetSlotList_Results
GetResult(u64) overload
Sourcefn dump(self) -> Il2CppString
fn dump(self) -> Il2CppString
Dump() overload
Sourcefn for_each(
self,
action: impl Into<Action_2<u64, NexVersus_TargetSlotList_Results>>,
)
fn for_each( self, action: impl Into<Action_2<u64, NexVersus_TargetSlotList_Results>>, )
ForEach(crate::system::action_2::Action_2<u64,crate::app::nexversus::NexVersus_TargetSlotList_Results>) overload
Sourcefn for_each_2(
self,
action: impl Into<Action_3<i32, u64, NexVersus_TargetSlotList_Results>>,
)
fn for_each_2( self, action: impl Into<Action_3<i32, u64, NexVersus_TargetSlotList_Results>>, )
ForEach(crate::system::action_3::Action_3<i32,u64,crate::app::nexversus::NexVersus_TargetSlotList_Results>) 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: INexVersus_TargetSlotList> INexVersus_TargetSlotListMethods for __T
Available on crate feature
app-nexversus only.