Skip to main content

IGrounder

Trait IGrounder 

Source
pub trait IGrounder: IMonoBehaviour {
    // Provided methods
    fn weight(self) -> f32 { ... }
    fn set_weight(self, value: f32) { ... }
    fn solver(self) -> Grounding { ... }
    fn set_solver(self, value: Grounding) { ... }
    fn on_pre_grounder(self) -> Grounder_GrounderDelegate { ... }
    fn set_on_pre_grounder(self, value: Grounder_GrounderDelegate) { ... }
    fn on_post_grounder(self) -> Grounder_GrounderDelegate { ... }
    fn set_on_post_grounder(self, value: Grounder_GrounderDelegate) { ... }
}

Provided Methods§

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§