Skip to main content

IGodLevelDataMethods

Trait IGodLevelDataMethods 

Source
pub trait IGodLevelDataMethods: IGodLevelData {
    // Provided methods
    fn get_level(self) -> Il2CppString { ... }
    fn set_level(self, value: impl Into<Il2CppString>) { ... }
    fn get_exp(self) -> i32 { ... }
    fn set_exp(self, value: impl Into<i32>) { ... }
    fn get_reliance_level(self) -> Il2CppString { ... }
    fn set_reliance_level(self, value: impl Into<Il2CppString>) { ... }
    fn get_cost(self) -> i32 { ... }
    fn set_cost(self, value: impl Into<i32>) { ... }
    fn get_debug_name(self) -> Il2CppString { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_level(self) -> Il2CppString

get_Level() overload

Source

fn set_level(self, value: impl Into<Il2CppString>)

set_Level(::unity::Il2CppString) overload

Source

fn get_exp(self) -> i32

get_Exp() overload

Source

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

set_Exp(i32) overload

Source

fn get_reliance_level(self) -> Il2CppString

get_RelianceLevel() overload

Source

fn set_reliance_level(self, value: impl Into<Il2CppString>)

set_RelianceLevel(::unity::Il2CppString) overload

Source

fn get_cost(self) -> i32

get_Cost() overload

Source

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

set_Cost(i32) overload

Source

fn get_debug_name(self) -> Il2CppString

GetDebugName() 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: IGodLevelData> IGodLevelDataMethods for __T

Available on crate feature app-godleveldata only.