pub trait IProfileCardMethods: IProfileCard {
Show 81 methods
// Provided methods
fn ctor(self) { ... }
fn ctor_2(self, src: impl Into<ProfileCard>) { ... }
fn clear(self) { ... }
fn copy(self, src: impl Into<ProfileCard>) { ... }
fn get_image(self) -> Array<u8> { ... }
fn set_image(self, image: impl Into<Array<u8>>) { ... }
fn get_user_name(self) -> Il2CppString { ... }
fn get_checked_user_name(self) -> Il2CppString { ... }
fn set_user_name(self, name: impl Into<Il2CppString>) { ... }
fn get_lang(self) -> Language_Langs { ... }
fn set_lang(self, value: impl Into<Language_Langs>) { ... }
fn get_title(self) -> ProfileCardTitleData { ... }
fn set_title(self, value: impl Into<ProfileCardTitleData>) { ... }
fn get_title_name(self) -> Il2CppString { ... }
fn get_bg(self) -> ProfileCardBgData { ... }
fn set_bg(self, value: impl Into<ProfileCardBgData>) { ... }
fn get_frame(self) -> ProfileCardFrameData { ... }
fn set_frame(self, value: impl Into<ProfileCardFrameData>) { ... }
fn get_text_deco(self) -> ProfileCardTextDecoData { ... }
fn set_text_deco(self, value: impl Into<ProfileCardTextDecoData>) { ... }
fn get_text_color(self) -> ProfileCardTextColorData { ... }
fn set_text_color(self, value: impl Into<ProfileCardTextColorData>) { ... }
fn get_character_stamp(self) -> ProfileCardCharacterStampData { ... }
fn set_character_stamp(
self,
value: impl Into<ProfileCardCharacterStampData>,
) { ... }
fn get_comment(self) -> Array<ProfileCardCommentData> { ... }
fn set_comment(self, value: impl Into<Array<ProfileCardCommentData>>) { ... }
fn get_comment_string(self) -> Il2CppString { ... }
fn initialize_comment(self) { ... }
fn get_comment_2(self, i: impl Into<i32>) -> ProfileCardCommentData { ... }
fn get_comment_message(self, i: impl Into<i32>) -> Il2CppString { ... }
fn set_comment_2(self, i: impl Into<i32>, pccid: impl Into<Il2CppString>) { ... }
fn generate_comment_string(self) { ... }
fn get_play_time(self) -> f32 { ... }
fn set_play_time(self, value: impl Into<f32>) { ... }
fn get_play_time_hour(self) -> i32 { ... }
fn set_play_time_hour(self, value: impl Into<i32>) { ... }
fn get_play_time_minute(self) -> i32 { ... }
fn set_play_time_minute(self, value: impl Into<i32>) { ... }
fn get_birth_month(self) -> u8 { ... }
fn set_birth_month(self, value: impl Into<u8>) { ... }
fn get_birth_day(self) -> u8 { ... }
fn set_birth_day(self, value: impl Into<u8>) { ... }
fn get_difficulty(self) -> Difficulty { ... }
fn set_difficulty(self, value: impl Into<Difficulty>) { ... }
fn get_game_mode(self) -> GameMode { ... }
fn set_game_mode(self, value: impl Into<GameMode>) { ... }
fn get_gender(self) -> Gender { ... }
fn set_gender(self, value: impl Into<Gender>) { ... }
fn get_favorite_character(self) -> ProfileCardFavoriteCharacterData { ... }
fn set_favorite_character(
self,
value: impl Into<ProfileCardFavoriteCharacterData>,
) { ... }
fn set_favorite_character_2(self, pcfcid: impl Into<Il2CppString>) { ... }
fn get_favorite_map(self) -> ProfileCardFavoriteMapData { ... }
fn set_favorite_map(self, value: impl Into<ProfileCardFavoriteMapData>) { ... }
fn get_relay_playing_count(self) -> u32 { ... }
fn set_relay_playing_count(self, value: impl Into<u32>) { ... }
fn get_versus_theme_of_edit_map(self) -> ProfileCardThemeOfEditMapData { ... }
fn set_versus_theme_of_edit_map(
self,
value: impl Into<ProfileCardThemeOfEditMapData>,
) { ... }
fn get_versus_rate(self) -> i32 { ... }
fn set_versus_rate(self, value: impl Into<i32>) { ... }
fn get_versus_playing_count(self) -> u32 { ... }
fn set_versus_playing_count(self, value: impl Into<u32>) { ... }
fn get_owner_id(self) -> u64 { ... }
fn set_owner_id(self, value: impl Into<u64>) { ... }
fn get_is_public(self) -> bool { ... }
fn set_is_public(self, value: impl Into<bool>) { ... }
fn get_free_stamp_list_array(self) -> Array<List_1<ProfileCard_FreeStamp>> { ... }
fn get_free_stamp(
self,
page: impl Into<i32>,
index: impl Into<i32>,
) -> ProfileCard_FreeStamp { ... }
fn get_free_stamp_count(self, is_front: impl Into<bool>) -> i32 { ... }
fn get_free_stamp_count_2(self, page: impl Into<i32>) -> i32 { ... }
fn add_free_stamp(
self,
stamp_data: impl Into<ProfileCardStampData>,
position: impl Into<Vector2>,
rotation: impl Into<f32>,
scale_x: impl Into<f32>,
scale_y: impl Into<f32>,
is_front: impl Into<bool>,
) -> ProfileCard_FreeStamp { ... }
fn remove_free_stamp(
self,
free_stamp: impl Into<ProfileCard_FreeStamp>,
is_front: impl Into<bool>,
) { ... }
fn clear_free_stamp(self, is_front: impl Into<bool>) { ... }
fn copy_free_stamp(
self,
free_stamp_list_array: impl Into<Array<List_1<ProfileCard_FreeStamp>>>,
) { ... }
fn get_sortie_count(self, index: impl Into<i32>) -> ProfileCard_SortieCount { ... }
fn set_sortie_count(
self,
index: impl Into<i32>,
person_data: impl Into<PersonData>,
job_data: impl Into<JobData>,
count: impl Into<i32>,
) { ... }
fn sort_sortie_count(self) { ... }
fn clear_sortie_count(self) { ... }
fn get_achievement(self, category: impl Into<AchieveData_Categories>) -> i32 { ... }
fn set_achievement(
self,
categoty: impl Into<AchieveData_Categories>,
count: impl Into<i32>,
) { ... }
fn serialize(self, stream: impl Into<Stream_2>) { ... }
fn deserialize(self, stream: impl Into<Stream_2>) { ... }
}Provided Methods§
Sourcefn ctor_2(self, src: impl Into<ProfileCard>)
fn ctor_2(self, src: impl Into<ProfileCard>)
.ctor(crate::app::profilecard::ProfileCard) overload
Sourcefn copy(self, src: impl Into<ProfileCard>)
fn copy(self, src: impl Into<ProfileCard>)
Copy(crate::app::profilecard::ProfileCard) overload
Sourcefn get_user_name(self) -> Il2CppString
fn get_user_name(self) -> Il2CppString
GetUserName() overload
Sourcefn get_checked_user_name(self) -> Il2CppString
fn get_checked_user_name(self) -> Il2CppString
GetCheckedUserName() overload
Sourcefn set_user_name(self, name: impl Into<Il2CppString>)
fn set_user_name(self, name: impl Into<Il2CppString>)
SetUserName(::unity::Il2CppString) overload
Sourcefn get_lang(self) -> Language_Langs
fn get_lang(self) -> Language_Langs
get_Lang() overload
Sourcefn set_lang(self, value: impl Into<Language_Langs>)
fn set_lang(self, value: impl Into<Language_Langs>)
set_Lang(crate::app::language::Language_Langs) overload
Sourcefn get_title(self) -> ProfileCardTitleData
fn get_title(self) -> ProfileCardTitleData
get_Title() overload
Sourcefn set_title(self, value: impl Into<ProfileCardTitleData>)
fn set_title(self, value: impl Into<ProfileCardTitleData>)
set_Title(crate::app::profilecardtitledata::ProfileCardTitleData) overload
Sourcefn get_title_name(self) -> Il2CppString
fn get_title_name(self) -> Il2CppString
GetTitleName() overload
Sourcefn get_bg(self) -> ProfileCardBgData
fn get_bg(self) -> ProfileCardBgData
get_Bg() overload
Sourcefn set_bg(self, value: impl Into<ProfileCardBgData>)
fn set_bg(self, value: impl Into<ProfileCardBgData>)
set_Bg(crate::app::profilecardbgdata::ProfileCardBgData) overload
Sourcefn get_frame(self) -> ProfileCardFrameData
fn get_frame(self) -> ProfileCardFrameData
get_Frame() overload
Sourcefn set_frame(self, value: impl Into<ProfileCardFrameData>)
fn set_frame(self, value: impl Into<ProfileCardFrameData>)
set_Frame(crate::app::profilecardframedata::ProfileCardFrameData) overload
Sourcefn get_text_deco(self) -> ProfileCardTextDecoData
fn get_text_deco(self) -> ProfileCardTextDecoData
get_TextDeco() overload
Sourcefn set_text_deco(self, value: impl Into<ProfileCardTextDecoData>)
fn set_text_deco(self, value: impl Into<ProfileCardTextDecoData>)
set_TextDeco(crate::app::profilecardtextdecodata::ProfileCardTextDecoData) overload
Sourcefn get_text_color(self) -> ProfileCardTextColorData
fn get_text_color(self) -> ProfileCardTextColorData
get_TextColor() overload
Sourcefn set_text_color(self, value: impl Into<ProfileCardTextColorData>)
fn set_text_color(self, value: impl Into<ProfileCardTextColorData>)
set_TextColor(crate::app::profilecardtextcolordata::ProfileCardTextColorData) overload
Sourcefn get_character_stamp(self) -> ProfileCardCharacterStampData
fn get_character_stamp(self) -> ProfileCardCharacterStampData
get_CharacterStamp() overload
Sourcefn set_character_stamp(self, value: impl Into<ProfileCardCharacterStampData>)
fn set_character_stamp(self, value: impl Into<ProfileCardCharacterStampData>)
set_CharacterStamp(crate::app::profilecardcharacterstampdata::ProfileCardCharacterStampData) overload
Sourcefn get_comment(self) -> Array<ProfileCardCommentData>
fn get_comment(self) -> Array<ProfileCardCommentData>
get_Comment() overload
Sourcefn set_comment(self, value: impl Into<Array<ProfileCardCommentData>>)
fn set_comment(self, value: impl Into<Array<ProfileCardCommentData>>)
set_Comment(::unity::Array<crate::app::profilecardcommentdata::ProfileCardCommentData>) overload
Sourcefn get_comment_string(self) -> Il2CppString
fn get_comment_string(self) -> Il2CppString
get_CommentString() overload
Sourcefn initialize_comment(self)
fn initialize_comment(self)
InitializeComment() overload
Sourcefn get_comment_2(self, i: impl Into<i32>) -> ProfileCardCommentData
fn get_comment_2(self, i: impl Into<i32>) -> ProfileCardCommentData
GetComment(i32) overload
Sourcefn get_comment_message(self, i: impl Into<i32>) -> Il2CppString
fn get_comment_message(self, i: impl Into<i32>) -> Il2CppString
GetCommentMessage(i32) overload
Sourcefn set_comment_2(self, i: impl Into<i32>, pccid: impl Into<Il2CppString>)
fn set_comment_2(self, i: impl Into<i32>, pccid: impl Into<Il2CppString>)
SetComment(i32, ::unity::Il2CppString) overload
Sourcefn generate_comment_string(self)
fn generate_comment_string(self)
GenerateCommentString() overload
Sourcefn get_play_time(self) -> f32
fn get_play_time(self) -> f32
get_PlayTime() overload
Sourcefn set_play_time(self, value: impl Into<f32>)
fn set_play_time(self, value: impl Into<f32>)
set_PlayTime(f32) overload
Sourcefn get_play_time_hour(self) -> i32
fn get_play_time_hour(self) -> i32
get_PlayTimeHour() overload
Sourcefn set_play_time_hour(self, value: impl Into<i32>)
fn set_play_time_hour(self, value: impl Into<i32>)
set_PlayTimeHour(i32) overload
Sourcefn get_play_time_minute(self) -> i32
fn get_play_time_minute(self) -> i32
get_PlayTimeMinute() overload
Sourcefn set_play_time_minute(self, value: impl Into<i32>)
fn set_play_time_minute(self, value: impl Into<i32>)
set_PlayTimeMinute(i32) overload
Sourcefn get_birth_month(self) -> u8
fn get_birth_month(self) -> u8
get_BirthMonth() overload
Sourcefn set_birth_month(self, value: impl Into<u8>)
fn set_birth_month(self, value: impl Into<u8>)
set_BirthMonth(u8) overload
Sourcefn get_birth_day(self) -> u8
fn get_birth_day(self) -> u8
get_BirthDay() overload
Sourcefn set_birth_day(self, value: impl Into<u8>)
fn set_birth_day(self, value: impl Into<u8>)
set_BirthDay(u8) overload
Sourcefn get_difficulty(self) -> Difficulty
fn get_difficulty(self) -> Difficulty
get_Difficulty() overload
Sourcefn set_difficulty(self, value: impl Into<Difficulty>)
fn set_difficulty(self, value: impl Into<Difficulty>)
set_Difficulty(crate::app::difficulty::Difficulty) overload
Sourcefn get_game_mode(self) -> GameMode
fn get_game_mode(self) -> GameMode
get_GameMode() overload
Sourcefn set_game_mode(self, value: impl Into<GameMode>)
fn set_game_mode(self, value: impl Into<GameMode>)
set_GameMode(crate::app::gamemode::GameMode) overload
Sourcefn get_gender(self) -> Gender
fn get_gender(self) -> Gender
get_Gender() overload
Sourcefn set_gender(self, value: impl Into<Gender>)
fn set_gender(self, value: impl Into<Gender>)
set_Gender(crate::app::gender::Gender) overload
Sourcefn get_favorite_character(self) -> ProfileCardFavoriteCharacterData
fn get_favorite_character(self) -> ProfileCardFavoriteCharacterData
get_FavoriteCharacter() overload
Sourcefn set_favorite_character(
self,
value: impl Into<ProfileCardFavoriteCharacterData>,
)
fn set_favorite_character( self, value: impl Into<ProfileCardFavoriteCharacterData>, )
set_FavoriteCharacter(crate::app::profilecardfavoritecharacterdata::ProfileCardFavoriteCharacterData) overload
Sourcefn set_favorite_character_2(self, pcfcid: impl Into<Il2CppString>)
fn set_favorite_character_2(self, pcfcid: impl Into<Il2CppString>)
SetFavoriteCharacter(::unity::Il2CppString) overload
Sourcefn get_favorite_map(self) -> ProfileCardFavoriteMapData
fn get_favorite_map(self) -> ProfileCardFavoriteMapData
get_FavoriteMap() overload
Sourcefn set_favorite_map(self, value: impl Into<ProfileCardFavoriteMapData>)
fn set_favorite_map(self, value: impl Into<ProfileCardFavoriteMapData>)
set_FavoriteMap(crate::app::profilecardfavoritemapdata::ProfileCardFavoriteMapData) overload
Sourcefn get_relay_playing_count(self) -> u32
fn get_relay_playing_count(self) -> u32
get_RelayPlayingCount() overload
Sourcefn set_relay_playing_count(self, value: impl Into<u32>)
fn set_relay_playing_count(self, value: impl Into<u32>)
set_RelayPlayingCount(u32) overload
Sourcefn get_versus_theme_of_edit_map(self) -> ProfileCardThemeOfEditMapData
fn get_versus_theme_of_edit_map(self) -> ProfileCardThemeOfEditMapData
get_VersusThemeOfEditMap() overload
Sourcefn set_versus_theme_of_edit_map(
self,
value: impl Into<ProfileCardThemeOfEditMapData>,
)
fn set_versus_theme_of_edit_map( self, value: impl Into<ProfileCardThemeOfEditMapData>, )
set_VersusThemeOfEditMap(crate::app::profilecardthemeofeditmapdata::ProfileCardThemeOfEditMapData) overload
Sourcefn get_versus_rate(self) -> i32
fn get_versus_rate(self) -> i32
get_VersusRate() overload
Sourcefn set_versus_rate(self, value: impl Into<i32>)
fn set_versus_rate(self, value: impl Into<i32>)
set_VersusRate(i32) overload
Sourcefn get_versus_playing_count(self) -> u32
fn get_versus_playing_count(self) -> u32
get_VersusPlayingCount() overload
Sourcefn set_versus_playing_count(self, value: impl Into<u32>)
fn set_versus_playing_count(self, value: impl Into<u32>)
set_VersusPlayingCount(u32) overload
Sourcefn get_owner_id(self) -> u64
fn get_owner_id(self) -> u64
get_OwnerID() overload
Sourcefn set_owner_id(self, value: impl Into<u64>)
fn set_owner_id(self, value: impl Into<u64>)
set_OwnerID(u64) overload
Sourcefn get_is_public(self) -> bool
fn get_is_public(self) -> bool
get_IsPublic() overload
Sourcefn set_is_public(self, value: impl Into<bool>)
fn set_is_public(self, value: impl Into<bool>)
set_IsPublic(bool) overload
Sourcefn get_free_stamp_list_array(self) -> Array<List_1<ProfileCard_FreeStamp>>
fn get_free_stamp_list_array(self) -> Array<List_1<ProfileCard_FreeStamp>>
get_FreeStampListArray() overload
Sourcefn get_free_stamp(
self,
page: impl Into<i32>,
index: impl Into<i32>,
) -> ProfileCard_FreeStamp
fn get_free_stamp( self, page: impl Into<i32>, index: impl Into<i32>, ) -> ProfileCard_FreeStamp
GetFreeStamp(i32, i32) overload
Sourcefn get_free_stamp_count(self, is_front: impl Into<bool>) -> i32
fn get_free_stamp_count(self, is_front: impl Into<bool>) -> i32
GetFreeStampCount(bool) overload
Sourcefn get_free_stamp_count_2(self, page: impl Into<i32>) -> i32
fn get_free_stamp_count_2(self, page: impl Into<i32>) -> i32
GetFreeStampCount(i32) overload
Sourcefn add_free_stamp(
self,
stamp_data: impl Into<ProfileCardStampData>,
position: impl Into<Vector2>,
rotation: impl Into<f32>,
scale_x: impl Into<f32>,
scale_y: impl Into<f32>,
is_front: impl Into<bool>,
) -> ProfileCard_FreeStamp
fn add_free_stamp( self, stamp_data: impl Into<ProfileCardStampData>, position: impl Into<Vector2>, rotation: impl Into<f32>, scale_x: impl Into<f32>, scale_y: impl Into<f32>, is_front: impl Into<bool>, ) -> ProfileCard_FreeStamp
AddFreeStamp(crate::app::profilecardstampdata::ProfileCardStampData, crate::unity_engine::vector2::Vector2, f32, f32, f32, bool) overload
Sourcefn remove_free_stamp(
self,
free_stamp: impl Into<ProfileCard_FreeStamp>,
is_front: impl Into<bool>,
)
fn remove_free_stamp( self, free_stamp: impl Into<ProfileCard_FreeStamp>, is_front: impl Into<bool>, )
RemoveFreeStamp(crate::app::profilecard::ProfileCard_FreeStamp, bool) overload
Sourcefn clear_free_stamp(self, is_front: impl Into<bool>)
fn clear_free_stamp(self, is_front: impl Into<bool>)
ClearFreeStamp(bool) overload
Sourcefn copy_free_stamp(
self,
free_stamp_list_array: impl Into<Array<List_1<ProfileCard_FreeStamp>>>,
)
fn copy_free_stamp( self, free_stamp_list_array: impl Into<Array<List_1<ProfileCard_FreeStamp>>>, )
CopyFreeStamp(::unity::Array<crate::system::collections::generic::list_1::List_1<crate::app::profilecard::ProfileCard_FreeStamp>>) overload
Sourcefn get_sortie_count(self, index: impl Into<i32>) -> ProfileCard_SortieCount
fn get_sortie_count(self, index: impl Into<i32>) -> ProfileCard_SortieCount
GetSortieCount(i32) overload
Sourcefn set_sortie_count(
self,
index: impl Into<i32>,
person_data: impl Into<PersonData>,
job_data: impl Into<JobData>,
count: impl Into<i32>,
)
fn set_sortie_count( self, index: impl Into<i32>, person_data: impl Into<PersonData>, job_data: impl Into<JobData>, count: impl Into<i32>, )
SetSortieCount(i32, crate::app::persondata::PersonData, crate::app::jobdata::JobData, i32) overload
Sourcefn sort_sortie_count(self)
fn sort_sortie_count(self)
SortSortieCount() overload
Sourcefn clear_sortie_count(self)
fn clear_sortie_count(self)
ClearSortieCount() overload
Sourcefn get_achievement(self, category: impl Into<AchieveData_Categories>) -> i32
fn get_achievement(self, category: impl Into<AchieveData_Categories>) -> i32
GetAchievement(crate::app::achievedata::AchieveData_Categories) overload
Sourcefn set_achievement(
self,
categoty: impl Into<AchieveData_Categories>,
count: impl Into<i32>,
)
fn set_achievement( self, categoty: impl Into<AchieveData_Categories>, count: impl Into<i32>, )
SetAchievement(crate::app::achievedata::AchieveData_Categories, i32) overload
Sourcefn serialize(self, stream: impl Into<Stream_2>)
fn serialize(self, stream: impl Into<Stream_2>)
Serialize(crate::app::stream_2::Stream_2) overload
Sourcefn deserialize(self, stream: impl Into<Stream_2>)
fn deserialize(self, stream: impl Into<Stream_2>)
Deserialize(crate::app::stream_2::Stream_2) 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: IProfileCard> IProfileCardMethods for __T
app-profilecard only.