pub trait IBattleRecordLineSetterMethods: IBattleRecordLineSetter {
// Provided methods
fn set(self, rec: impl Into<ChapterRecord_Record>) { ... }
fn set_data(
self,
cid: impl Into<Il2CppString>,
turn: impl Into<i32>,
time: impl Into<f32>,
pid: impl Into<Il2CppString>,
jid: impl Into<Il2CppString>,
gid: impl Into<Il2CppString>,
) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set(self, rec: impl Into<ChapterRecord_Record>)
fn set(self, rec: impl Into<ChapterRecord_Record>)
Set(crate::app::chapterrecord::ChapterRecord_Record) overload
Sourcefn set_data(
self,
cid: impl Into<Il2CppString>,
turn: impl Into<i32>,
time: impl Into<f32>,
pid: impl Into<Il2CppString>,
jid: impl Into<Il2CppString>,
gid: impl Into<Il2CppString>,
)
fn set_data( self, cid: impl Into<Il2CppString>, turn: impl Into<i32>, time: impl Into<f32>, pid: impl Into<Il2CppString>, jid: impl Into<Il2CppString>, gid: impl Into<Il2CppString>, )
SetData(::unity::Il2CppString, i32, f32, ::unity::Il2CppString, ::unity::Il2CppString, ::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: IBattleRecordLineSetter> IBattleRecordLineSetterMethods for __T
Available on crate feature
app-battlerecordlinesetter only.