pub trait IRuntimeScopeFrameMethods: IRuntimeScopeFrame {
// Provided methods
fn get_debug_symbols(self) -> List_1<SymbolRef> { ... }
fn set_debug_symbols(self, value: impl Into<List_1<SymbolRef>>) { ... }
fn get_count(self) -> i32 { ... }
fn get_to_first_block(self) -> i32 { ... }
fn set_to_first_block(self, value: impl Into<i32>) { ... }
fn ctor(self) { ... }
fn to_string(self) -> Il2CppString { ... }
}Provided Methods§
Sourcefn get_debug_symbols(self) -> List_1<SymbolRef>
fn get_debug_symbols(self) -> List_1<SymbolRef>
get_DebugSymbols() overload
Sourcefn set_debug_symbols(self, value: impl Into<List_1<SymbolRef>>)
fn set_debug_symbols(self, value: impl Into<List_1<SymbolRef>>)
set_DebugSymbols(crate::system::collections::generic::list_1::List_1<crate::moon_sharp::interpreter::symbolref::SymbolRef>) overload
Sourcefn get_to_first_block(self) -> i32
fn get_to_first_block(self) -> i32
get_ToFirstBlock() overload
Sourcefn set_to_first_block(self, value: impl Into<i32>)
fn set_to_first_block(self, value: impl Into<i32>)
set_ToFirstBlock(i32) overload
Sourcefn to_string(self) -> Il2CppString
fn to_string(self) -> Il2CppString
ToString() 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: IRuntimeScopeFrame> IRuntimeScopeFrameMethods for __T
Available on crate feature
moon_sharp-interpreter-execution-runtimescopeframe only.