pub trait IChapterRecord: IObject {
// Provided methods
fn m_list(self) -> List_1<ChapterRecord_Record> { ... }
fn set_m_list(self, value: List_1<ChapterRecord_Record>) { ... }
fn m_dictionary(self) -> Dictionary_2<Il2CppString, ChapterRecord_Record> { ... }
fn set_m_dictionary(
self,
value: Dictionary_2<Il2CppString, ChapterRecord_Record>,
) { ... }
}Provided Methods§
fn m_list(self) -> List_1<ChapterRecord_Record>
fn set_m_list(self, value: List_1<ChapterRecord_Record>)
fn m_dictionary(self) -> Dictionary_2<Il2CppString, ChapterRecord_Record>
fn set_m_dictionary( self, value: Dictionary_2<Il2CppString, ChapterRecord_Record>, )
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.