pub trait IHubMyRoomDataMethods: IHubMyRoomData {
Show 19 methods
// Provided methods
fn get_pid(self) -> Il2CppString { ... }
fn set_pid(self, value: impl Into<Il2CppString>) { ... }
fn get_c1(self) -> i32 { ... }
fn set_c1(self, value: impl Into<i32>) { ... }
fn get_c2(self) -> i32 { ... }
fn set_c2(self, value: impl Into<i32>) { ... }
fn get_b1(self) -> i32 { ... }
fn set_b1(self, value: impl Into<i32>) { ... }
fn get_b2(self) -> i32 { ... }
fn set_b2(self, value: impl Into<i32>) { ... }
fn get_a1(self) -> i32 { ... }
fn set_a1(self, value: impl Into<i32>) { ... }
fn get_a2(self) -> i32 { ... }
fn set_a2(self, value: impl Into<i32>) { ... }
fn get_s1(self) -> i32 { ... }
fn set_s1(self, value: impl Into<i32>) { ... }
fn get_s2(self) -> i32 { ... }
fn set_s2(self, value: impl Into<i32>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_pid(self) -> Il2CppString
fn get_pid(self) -> Il2CppString
get_PID() overload
Sourcefn set_pid(self, value: impl Into<Il2CppString>)
fn set_pid(self, value: impl Into<Il2CppString>)
set_PID(::unity::Il2CppString) 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: IHubMyRoomData> IHubMyRoomDataMethods for __T
Available on crate feature
app-hubmyroomdata only.