Skip to main content

IDebuggerActionMethods

Trait IDebuggerActionMethods 

Source
pub trait IDebuggerActionMethods: IDebuggerAction {
    // Provided methods
    fn get_action(self) -> DebuggerAction_ActionType { ... }
    fn set_action(self, value: impl Into<DebuggerAction_ActionType>) { ... }
    fn get_source_id(self) -> i32 { ... }
    fn set_source_id(self, value: impl Into<i32>) { ... }
    fn get_source_line(self) -> i32 { ... }
    fn set_source_line(self, value: impl Into<i32>) { ... }
    fn get_source_col(self) -> i32 { ... }
    fn set_source_col(self, value: impl Into<i32>) { ... }
    fn get_lines(self) -> Array<i32> { ... }
    fn set_lines(self, value: impl Into<Array<i32>>) { ... }
    fn ctor(self) { ... }
    fn to_string(self) -> Il2CppString { ... }
}

Provided Methods§

Source

fn get_action(self) -> DebuggerAction_ActionType

get_Action() overload

Source

fn set_action(self, value: impl Into<DebuggerAction_ActionType>)

set_Action(crate::moon_sharp::interpreter::debugging::debuggeraction::DebuggerAction_ActionType) overload

Source

fn get_source_id(self) -> i32

get_SourceID() overload

Source

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

set_SourceID(i32) overload

Source

fn get_source_line(self) -> i32

get_SourceLine() overload

Source

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

set_SourceLine(i32) overload

Source

fn get_source_col(self) -> i32

get_SourceCol() overload

Source

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

set_SourceCol(i32) overload

Source

fn get_lines(self) -> Array<i32>

get_Lines() overload

Source

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

set_Lines(::unity::Array<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: IDebuggerAction> IDebuggerActionMethods for __T

Available on crate feature moon_sharp-interpreter-debugging-debuggeraction only.