pub trait IInfoUtil_StatusSkillMethods: IInfoUtil_StatusSkill {
// Provided methods
fn get_data(self) -> SkillData { ... }
fn set_data(self, value: impl Into<SkillData>) { ... }
fn get_is_active(self) -> bool { ... }
fn set_is_active(self, value: impl Into<bool>) { ... }
fn get_category(self) -> SkillData_Categorys { ... }
fn set_category(self, value: impl Into<SkillData_Categorys>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_data(self, value: impl Into<SkillData>)
fn set_data(self, value: impl Into<SkillData>)
set_Data(crate::app::skilldata::SkillData) overload
Sourcefn get_is_active(self) -> bool
fn get_is_active(self) -> bool
get_IsActive() overload
Sourcefn set_is_active(self, value: impl Into<bool>)
fn set_is_active(self, value: impl Into<bool>)
set_IsActive(bool) overload
Sourcefn get_category(self) -> SkillData_Categorys
fn get_category(self) -> SkillData_Categorys
get_Category() overload
Sourcefn set_category(self, value: impl Into<SkillData_Categorys>)
fn set_category(self, value: impl Into<SkillData_Categorys>)
set_Category(crate::app::skilldata::SkillData_Categorys) 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: IInfoUtil_StatusSkill> IInfoUtil_StatusSkillMethods for __T
Available on crate feature
app-infoutil only.