Skip to main content

IRuntimeScopeFrameMethods

Trait IRuntimeScopeFrameMethods 

Source
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§

Source

fn get_debug_symbols(self) -> List_1<SymbolRef>

get_DebugSymbols() overload

Source

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

Source

fn get_count(self) -> i32

get_Count() overload

Source

fn get_to_first_block(self) -> i32

get_ToFirstBlock() overload

Source

fn set_to_first_block(self, value: impl Into<i32>)

set_ToFirstBlock(i32) overload

Source

fn ctor(self)

.ctor() overload

Source

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§

Source§

impl<__T: IRuntimeScopeFrame> IRuntimeScopeFrameMethods for __T

Available on crate feature moon_sharp-interpreter-execution-runtimescopeframe only.