pub trait IRingColliderMethods: IRingCollider {
// Provided methods
fn on_validate(self) { ... }
fn set_critical(self) -> i32 { ... }
fn clear_critical(self) { ... }
fn get_critical_index(self) -> i32 { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_validate(self)
fn on_validate(self)
OnValidate() overload
Sourcefn set_critical(self) -> i32
fn set_critical(self) -> i32
SetCritical() overload
Sourcefn clear_critical(self)
fn clear_critical(self)
ClearCritical() overload
Sourcefn get_critical_index(self) -> i32
fn get_critical_index(self) -> i32
GetCriticalIndex() 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: IRingCollider> IRingColliderMethods for __T
Available on crate feature
app-ringcollider only.