pub trait IChapterRecordMethods: IChapterRecord {
// Provided methods
fn ctor(self) { ... }
fn get_count(self) -> i32 { ... }
fn get_item(self, index: impl Into<i32>) -> ChapterRecord_Record { ... }
fn find(self, cid: impl Into<Il2CppString>) -> ChapterRecord_Record { ... }
fn find_2(self, chapter: impl Into<ChapterData>) -> ChapterRecord_Record { ... }
fn clear(self) { ... }
fn try_add(
self,
record: impl Into<ChapterRecord_Record>,
) -> ChapterRecord_Record { ... }
fn try_add_2(self, cid: impl Into<Il2CppString>) -> ChapterRecord_Record { ... }
fn try_add_3(self, chapter: impl Into<ChapterData>) -> ChapterRecord_Record { ... }
fn serialize(self, stream: impl Into<Stream_2>) { ... }
fn deserialize(self, stream: impl Into<Stream_2>) { ... }
}Provided Methods§
Sourcefn get_item(self, index: impl Into<i32>) -> ChapterRecord_Record
fn get_item(self, index: impl Into<i32>) -> ChapterRecord_Record
get_Item(i32) overload
Sourcefn find(self, cid: impl Into<Il2CppString>) -> ChapterRecord_Record
fn find(self, cid: impl Into<Il2CppString>) -> ChapterRecord_Record
Find(::unity::Il2CppString) overload
Sourcefn find_2(self, chapter: impl Into<ChapterData>) -> ChapterRecord_Record
fn find_2(self, chapter: impl Into<ChapterData>) -> ChapterRecord_Record
Find(crate::app::chapterdata::ChapterData) overload
Sourcefn try_add(
self,
record: impl Into<ChapterRecord_Record>,
) -> ChapterRecord_Record
fn try_add( self, record: impl Into<ChapterRecord_Record>, ) -> ChapterRecord_Record
TryAdd(crate::app::chapterrecord::ChapterRecord_Record) overload
Sourcefn try_add_2(self, cid: impl Into<Il2CppString>) -> ChapterRecord_Record
fn try_add_2(self, cid: impl Into<Il2CppString>) -> ChapterRecord_Record
TryAdd(::unity::Il2CppString) overload
Sourcefn try_add_3(self, chapter: impl Into<ChapterData>) -> ChapterRecord_Record
fn try_add_3(self, chapter: impl Into<ChapterData>) -> ChapterRecord_Record
TryAdd(crate::app::chapterdata::ChapterData) 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: IChapterRecord> IChapterRecordMethods for __T
Available on crate feature
app-chapterrecord only.