pub trait IPhotographPauseDataMethods: IPhotographPauseData {
Show 16 methods
// Provided methods
fn get_pause_name(self) -> Il2CppString { ... }
fn set_pause_name(self, value: impl Into<Il2CppString>) { ... }
fn get_no(self) -> i32 { ... }
fn set_no(self, value: impl Into<i32>) { ... }
fn get_mid(self) -> Il2CppString { ... }
fn set_mid(self, value: impl Into<Il2CppString>) { ... }
fn get_anime_frame(self) -> i32 { ... }
fn set_anime_frame(self, value: impl Into<i32>) { ... }
fn get_face_anime(self) -> Il2CppString { ... }
fn set_face_anime(self, value: impl Into<Il2CppString>) { ... }
fn get_chara_id_list(self) -> Array<Il2CppString> { ... }
fn set_chara_id_list(self, value: impl Into<Array<Il2CppString>>) { ... }
fn get_name(self) -> Il2CppString { ... }
fn get_weapon_kind(self) -> ItemData_Kinds { ... }
fn try_get_override_pause_data(
self,
chara_id: impl Into<Il2CppString>,
) -> PhotographPauseData { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_pause_name(self) -> Il2CppString
fn get_pause_name(self) -> Il2CppString
get_PauseName() overload
Sourcefn set_pause_name(self, value: impl Into<Il2CppString>)
fn set_pause_name(self, value: impl Into<Il2CppString>)
set_PauseName(::unity::Il2CppString) overload
Sourcefn get_mid(self) -> Il2CppString
fn get_mid(self) -> Il2CppString
get_Mid() overload
Sourcefn set_mid(self, value: impl Into<Il2CppString>)
fn set_mid(self, value: impl Into<Il2CppString>)
set_Mid(::unity::Il2CppString) overload
Sourcefn get_anime_frame(self) -> i32
fn get_anime_frame(self) -> i32
get_AnimeFrame() overload
Sourcefn set_anime_frame(self, value: impl Into<i32>)
fn set_anime_frame(self, value: impl Into<i32>)
set_AnimeFrame(i32) overload
Sourcefn get_face_anime(self) -> Il2CppString
fn get_face_anime(self) -> Il2CppString
get_FaceAnime() overload
Sourcefn set_face_anime(self, value: impl Into<Il2CppString>)
fn set_face_anime(self, value: impl Into<Il2CppString>)
set_FaceAnime(::unity::Il2CppString) overload
Sourcefn get_chara_id_list(self) -> Array<Il2CppString>
fn get_chara_id_list(self) -> Array<Il2CppString>
get_CharaIdList() overload
Sourcefn set_chara_id_list(self, value: impl Into<Array<Il2CppString>>)
fn set_chara_id_list(self, value: impl Into<Array<Il2CppString>>)
set_CharaIdList(::unity::Array<::unity::Il2CppString>) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
get_Name() overload
Sourcefn get_weapon_kind(self) -> ItemData_Kinds
fn get_weapon_kind(self) -> ItemData_Kinds
get_WeaponKind() overload
Sourcefn try_get_override_pause_data(
self,
chara_id: impl Into<Il2CppString>,
) -> PhotographPauseData
fn try_get_override_pause_data( self, chara_id: impl Into<Il2CppString>, ) -> PhotographPauseData
TryGetOverridePauseData(::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: IPhotographPauseData> IPhotographPauseDataMethods for __T
Available on crate feature
app-photographpausedata only.