pub trait IReplHistoryInterpreterMethods: IReplHistoryInterpreter {
// Provided methods
fn ctor(self, script: impl Into<Script>, history_size: impl Into<i32>) { ... }
fn evaluate(self, input: impl Into<Il2CppString>) -> DynValue { ... }
fn history_prev(self) -> Il2CppString { ... }
fn history_next(self) -> Il2CppString { ... }
}Provided Methods§
Sourcefn ctor(self, script: impl Into<Script>, history_size: impl Into<i32>)
fn ctor(self, script: impl Into<Script>, history_size: impl Into<i32>)
.ctor(crate::moon_sharp::interpreter::script::Script, i32) overload
Sourcefn evaluate(self, input: impl Into<Il2CppString>) -> DynValue
fn evaluate(self, input: impl Into<Il2CppString>) -> DynValue
Evaluate(::unity::Il2CppString) overload
Sourcefn history_prev(self) -> Il2CppString
fn history_prev(self) -> Il2CppString
HistoryPrev() overload
Sourcefn history_next(self) -> Il2CppString
fn history_next(self) -> Il2CppString
HistoryNext() 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: IReplHistoryInterpreter> IReplHistoryInterpreterMethods for __T
Available on crate feature
moon_sharp-interpreter-repl-replhistoryinterpreter only.