pub trait IAmiiboDataMethods: IAmiiboData {
Show 14 methods
// Provided methods
fn get_numbering_id(self) -> Il2CppString { ... }
fn set_numbering_id(self, value: impl Into<Il2CppString>) { ... }
fn get_ii_ds(self) -> Array<Il2CppString> { ... }
fn set_ii_ds(self, value: impl Into<Array<Il2CppString>>) { ... }
fn get_aid(self) -> Il2CppString { ... }
fn set_aid(self, value: impl Into<Il2CppString>) { ... }
fn get_bgm(self) -> Il2CppString { ... }
fn set_bgm(self, value: impl Into<Il2CppString>) { ... }
fn get_ticket_num(self) -> i32 { ... }
fn set_ticket_num(self, value: impl Into<i32>) { ... }
fn get_kizuna_num(self) -> i32 { ... }
fn set_kizuna_num(self, value: impl Into<i32>) { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_numbering_id(self) -> Il2CppString
fn get_numbering_id(self) -> Il2CppString
get_NumberingID() overload
Sourcefn set_numbering_id(self, value: impl Into<Il2CppString>)
fn set_numbering_id(self, value: impl Into<Il2CppString>)
set_NumberingID(::unity::Il2CppString) overload
Sourcefn get_ii_ds(self) -> Array<Il2CppString>
fn get_ii_ds(self) -> Array<Il2CppString>
get_IIDs() overload
Sourcefn set_ii_ds(self, value: impl Into<Array<Il2CppString>>)
fn set_ii_ds(self, value: impl Into<Array<Il2CppString>>)
set_IIDs(::unity::Array<::unity::Il2CppString>) overload
Sourcefn get_aid(self) -> Il2CppString
fn get_aid(self) -> Il2CppString
get_AID() overload
Sourcefn set_aid(self, value: impl Into<Il2CppString>)
fn set_aid(self, value: impl Into<Il2CppString>)
set_AID(::unity::Il2CppString) overload
Sourcefn get_bgm(self) -> Il2CppString
fn get_bgm(self) -> Il2CppString
get_BGM() overload
Sourcefn set_bgm(self, value: impl Into<Il2CppString>)
fn set_bgm(self, value: impl Into<Il2CppString>)
set_BGM(::unity::Il2CppString) overload
Sourcefn get_ticket_num(self) -> i32
fn get_ticket_num(self) -> i32
get_TicketNum() overload
Sourcefn set_ticket_num(self, value: impl Into<i32>)
fn set_ticket_num(self, value: impl Into<i32>)
set_TicketNum(i32) overload
Sourcefn get_kizuna_num(self) -> i32
fn get_kizuna_num(self) -> i32
get_KizunaNum() overload
Sourcefn set_kizuna_num(self, value: impl Into<i32>)
fn set_kizuna_num(self, value: impl Into<i32>)
set_KizunaNum(i32) 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: IAmiiboData> IAmiiboDataMethods for __T
Available on crate feature
app-amiibodata only.