pub trait IDoorInspectorMethods: IDoorInspector {
// Provided methods
fn ctor(self) { ... }
fn get_label(self) -> Il2CppString { ... }
fn get_range(self) -> i32 { ... }
fn get_color(self) -> Color { ... }
fn can_breakable(self, force: impl Into<Force_Type>) -> bool { ... }
fn pre_call(self, super_: impl Into<ProcInst>) { ... }
}Provided Methods§
Sourcefn get_label(self) -> Il2CppString
fn get_label(self) -> Il2CppString
GetLabel() overload
Sourcefn can_breakable(self, force: impl Into<Force_Type>) -> bool
fn can_breakable(self, force: impl Into<Force_Type>) -> bool
CanBreakable(crate::app::force::Force_Type) 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: IDoorInspector> IDoorInspectorMethods for __T
Available on crate feature
app-doorinspector only.