pub trait IAkTriggerHandler: IMonoBehaviour {
// Provided methods
fn did_destroy(self) -> bool { ... }
fn set_did_destroy(self, value: bool) { ... }
fn trigger_list(self) -> List_1<i32> { ... }
fn set_trigger_list(self, value: List_1<i32>) { ... }
fn use_other_object(self) -> bool { ... }
fn set_use_other_object(self, value: bool) { ... }
}Provided Methods§
fn did_destroy(self) -> bool
fn set_did_destroy(self, value: bool)
fn trigger_list(self) -> List_1<i32>
fn set_trigger_list(self, value: List_1<i32>)
fn use_other_object(self) -> bool
fn set_use_other_object(self, value: bool)
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.