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§
Sourcefn get_total_count(self) -> i32
fn get_total_count(self) -> i32
getTotalCount() overload
Sourcefn get_best_score(self) -> i32
fn get_best_score(self) -> i32
get_BestScore() overload
Sourcefn set_best_score(self, value: impl Into<i32>)
fn set_best_score(self, value: impl Into<i32>)
set_BestScore(i32) overload
Sourcefn get_rank_num(self) -> i32
fn get_rank_num(self) -> i32
get_RankNum() overload
Sourcefn set_rank_num(self, value: impl Into<i32>)
fn set_rank_num(self, value: impl Into<i32>)
set_RankNum(i32) overload
Sourcefn get_is_assisted(self) -> bool
fn get_is_assisted(self) -> bool
get_IsAssisted() overload
Sourcefn set_is_assisted(self, value: impl Into<bool>)
fn set_is_assisted(self, value: impl Into<bool>)
set_IsAssisted(bool) overload
Sourcefn get_assist_count(self) -> i32
fn get_assist_count(self) -> i32
get_AssistCount() overload
Sourcefn set_assist_count(self, value: impl Into<i32>)
fn set_assist_count(self, value: impl Into<i32>)
set_AssistCount(i32) overload
Sourcefn get_normal_count(self) -> i32
fn get_normal_count(self) -> i32
get_NormalCount() overload
Sourcefn set_normal_count(self, value: impl Into<i32>)
fn set_normal_count(self, value: impl Into<i32>)
set_NormalCount(i32) overload
Sourcefn get_big_count(self) -> i32
fn get_big_count(self) -> i32
get_BigCount() overload
Sourcefn set_big_count(self, value: impl Into<i32>)
fn set_big_count(self, value: impl Into<i32>)
set_BigCount(i32) overload
Sourcefn get_link_count(self) -> i32
fn get_link_count(self) -> i32
get_LinkCount() overload
Sourcefn set_link_count(self, value: impl Into<i32>)
fn set_link_count(self, value: impl Into<i32>)
set_LinkCount(i32) overload
Sourcefn get_special_count(self) -> i32
fn get_special_count(self) -> i32
get_SpecialCount() overload
Sourcefn set_special_count(self, value: impl Into<i32>)
fn set_special_count(self, value: impl Into<i32>)
set_SpecialCount(i32) overload
Sourcefn get_roulette_count(self) -> i32
fn get_roulette_count(self) -> i32
get_RouletteCount() overload
Sourcefn set_roulette_count(self, value: impl Into<i32>)
fn set_roulette_count(self, value: impl Into<i32>)
set_RouletteCount(i32) overload
Sourcefn get_target_count_list(self) -> Array<i32>
fn get_target_count_list(self) -> Array<i32>
get_TargetCountList() overload
Sourcefn set_target_count_list(self, value: impl Into<Array<i32>>)
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§
impl<__T: IDragonRideResultUI_DataSet> IDragonRideResultUI_DataSetMethods for __T
Available on crate feature
app-dragonrideresultui only.