pub trait IVisualEffect: IBehaviour {
// Provided methods
fn m_cached_event_attribute(self) -> VFXEventAttribute { ... }
fn set_m_cached_event_attribute(self, value: VFXEventAttribute) { ... }
fn output_event_received(self) -> Action_1<VFXOutputEventArgs> { ... }
fn set_output_event_received(self, value: Action_1<VFXOutputEventArgs>) { ... }
}Provided Methods§
fn m_cached_event_attribute(self) -> VFXEventAttribute
fn set_m_cached_event_attribute(self, value: VFXEventAttribute)
fn output_event_received(self) -> Action_1<VFXOutputEventArgs>
fn set_output_event_received(self, value: Action_1<VFXOutputEventArgs>)
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.