Skip to main content

IDragonRideResultUI_DataSetMethods

Trait IDragonRideResultUI_DataSetMethods 

Source
pub trait IDragonRideResultUI_DataSetMethods: IDragonRideResultUI_DataSet {
Show 25 methods // Provided methods fn ctor(self) { ... } fn set_list(self) { ... } fn get_total_count(self) -> i32 { ... } fn get_score(self) -> i32 { ... } fn set_score(self, value: impl Into<i32>) { ... } fn get_best_score(self) -> i32 { ... } fn set_best_score(self, value: impl Into<i32>) { ... } fn get_rank_num(self) -> i32 { ... } fn set_rank_num(self, value: impl Into<i32>) { ... } fn get_is_assisted(self) -> bool { ... } fn set_is_assisted(self, value: impl Into<bool>) { ... } fn get_assist_count(self) -> i32 { ... } fn set_assist_count(self, value: impl Into<i32>) { ... } fn get_normal_count(self) -> i32 { ... } fn set_normal_count(self, value: impl Into<i32>) { ... } fn get_big_count(self) -> i32 { ... } fn set_big_count(self, value: impl Into<i32>) { ... } fn get_link_count(self) -> i32 { ... } fn set_link_count(self, value: impl Into<i32>) { ... } fn get_special_count(self) -> i32 { ... } fn set_special_count(self, value: impl Into<i32>) { ... } fn get_roulette_count(self) -> i32 { ... } fn set_roulette_count(self, value: impl Into<i32>) { ... } fn get_target_count_list(self) -> Array<i32> { ... } fn set_target_count_list(self, value: impl Into<Array<i32>>) { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn set_list(self)

SetList() overload

Source

fn get_total_count(self) -> i32

getTotalCount() overload

Source

fn get_score(self) -> i32

get_Score() overload

Source

fn set_score(self, value: impl Into<i32>)

set_Score(i32) overload

Source

fn get_best_score(self) -> i32

get_BestScore() overload

Source

fn set_best_score(self, value: impl Into<i32>)

set_BestScore(i32) overload

Source

fn get_rank_num(self) -> i32

get_RankNum() overload

Source

fn set_rank_num(self, value: impl Into<i32>)

set_RankNum(i32) overload

Source

fn get_is_assisted(self) -> bool

get_IsAssisted() overload

Source

fn set_is_assisted(self, value: impl Into<bool>)

set_IsAssisted(bool) overload

Source

fn get_assist_count(self) -> i32

get_AssistCount() overload

Source

fn set_assist_count(self, value: impl Into<i32>)

set_AssistCount(i32) overload

Source

fn get_normal_count(self) -> i32

get_NormalCount() overload

Source

fn set_normal_count(self, value: impl Into<i32>)

set_NormalCount(i32) overload

Source

fn get_big_count(self) -> i32

get_BigCount() overload

Source

fn set_big_count(self, value: impl Into<i32>)

set_BigCount(i32) overload

get_LinkCount() overload

set_LinkCount(i32) overload

Source

fn get_special_count(self) -> i32

get_SpecialCount() overload

Source

fn set_special_count(self, value: impl Into<i32>)

set_SpecialCount(i32) overload

Source

fn get_roulette_count(self) -> i32

get_RouletteCount() overload

Source

fn set_roulette_count(self, value: impl Into<i32>)

set_RouletteCount(i32) overload

Source

fn get_target_count_list(self) -> Array<i32>

get_TargetCountList() overload

Source

fn set_target_count_list(self, value: impl Into<Array<i32>>)

set_TargetCountList(::unity::Array<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§

Source§

impl<__T: IDragonRideResultUI_DataSet> IDragonRideResultUI_DataSetMethods for __T

Available on crate feature app-dragonrideresultui only.