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§
Sourcefn get_action(self) -> DebuggerAction_ActionType
fn get_action(self) -> DebuggerAction_ActionType
get_Action() overload
Sourcefn set_action(self, value: impl Into<DebuggerAction_ActionType>)
fn set_action(self, value: impl Into<DebuggerAction_ActionType>)
set_Action(crate::moon_sharp::interpreter::debugging::debuggeraction::DebuggerAction_ActionType) overload
Sourcefn get_source_id(self) -> i32
fn get_source_id(self) -> i32
get_SourceID() overload
Sourcefn set_source_id(self, value: impl Into<i32>)
fn set_source_id(self, value: impl Into<i32>)
set_SourceID(i32) overload
Sourcefn get_source_line(self) -> i32
fn get_source_line(self) -> i32
get_SourceLine() overload
Sourcefn set_source_line(self, value: impl Into<i32>)
fn set_source_line(self, value: impl Into<i32>)
set_SourceLine(i32) overload
Sourcefn get_source_col(self) -> i32
fn get_source_col(self) -> i32
get_SourceCol() overload
Sourcefn set_source_col(self, value: impl Into<i32>)
fn set_source_col(self, value: impl Into<i32>)
set_SourceCol(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: IDebuggerAction> IDebuggerActionMethods for __T
Available on crate feature
moon_sharp-interpreter-debugging-debuggeraction only.