Skip to main content

IAkTriggerHandler

Trait IAkTriggerHandler 

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

Source

fn did_destroy(self) -> bool

Source

fn set_did_destroy(self, value: bool)

Source

fn trigger_list(self) -> List_1<i32>

Source

fn set_trigger_list(self, value: List_1<i32>)

Source

fn use_other_object(self) -> bool

Source

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.

Implementors§