pub trait IFriendListDataMethods: IFriendListData {
Show 18 methods
// Provided methods
fn get_flid(self) -> Il2CppString { ... }
fn set_flid(self, value: impl Into<Il2CppString>) { ... }
fn get_pid(self) -> Il2CppString { ... }
fn set_pid(self, value: impl Into<Il2CppString>) { ... }
fn get_level(self) -> i8 { ... }
fn set_level(self, value: impl Into<i8>) { ... }
fn get_content_text(self) -> Il2CppString { ... }
fn set_content_text(self, value: impl Into<Il2CppString>) { ... }
fn get_stamp_name(self) -> Il2CppString { ... }
fn set_stamp_name(self, value: impl Into<Il2CppString>) { ... }
fn get_image_name(self) -> Il2CppString { ... }
fn set_image_name(self, value: impl Into<Il2CppString>) { ... }
fn get_image_name_s(self) -> Il2CppString { ... }
fn set_image_name_s(self, value: impl Into<Il2CppString>) { ... }
fn get_country(self) -> i8 { ... }
fn set_country(self, value: impl Into<i8>) { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_flid(self) -> Il2CppString
fn get_flid(self) -> Il2CppString
get_FLID() overload
Sourcefn set_flid(self, value: impl Into<Il2CppString>)
fn set_flid(self, value: impl Into<Il2CppString>)
set_FLID(::unity::Il2CppString) overload
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
Sourcefn get_content_text(self) -> Il2CppString
fn get_content_text(self) -> Il2CppString
get_ContentText() overload
Sourcefn set_content_text(self, value: impl Into<Il2CppString>)
fn set_content_text(self, value: impl Into<Il2CppString>)
set_ContentText(::unity::Il2CppString) overload
Sourcefn get_stamp_name(self) -> Il2CppString
fn get_stamp_name(self) -> Il2CppString
get_StampName() overload
Sourcefn set_stamp_name(self, value: impl Into<Il2CppString>)
fn set_stamp_name(self, value: impl Into<Il2CppString>)
set_StampName(::unity::Il2CppString) overload
Sourcefn get_image_name(self) -> Il2CppString
fn get_image_name(self) -> Il2CppString
get_ImageName() overload
Sourcefn set_image_name(self, value: impl Into<Il2CppString>)
fn set_image_name(self, value: impl Into<Il2CppString>)
set_ImageName(::unity::Il2CppString) overload
Sourcefn get_image_name_s(self) -> Il2CppString
fn get_image_name_s(self) -> Il2CppString
get_ImageNameS() overload
Sourcefn set_image_name_s(self, value: impl Into<Il2CppString>)
fn set_image_name_s(self, value: impl Into<Il2CppString>)
set_ImageNameS(::unity::Il2CppString) overload
Sourcefn get_country(self) -> i8
fn get_country(self) -> i8
get_Country() overload
Sourcefn set_country(self, value: impl Into<i8>)
fn set_country(self, value: impl Into<i8>)
set_Country(i8) overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
GetDebugName() 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: IFriendListData> IFriendListDataMethods for __T
Available on crate feature
app-friendlistdata only.