pub trait IBipedReferencesMethods: IBipedReferences {
// Provided methods
fn get_is_filled(self) -> bool { ... }
fn get_is_empty(self) -> bool { ... }
fn is_empty(self, include_root: impl Into<bool>) -> bool { ... }
fn contains(
self,
t: impl Into<Transform>,
ignore_root: impl Into<bool>,
) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_is_filled(self) -> bool
fn get_is_filled(self) -> bool
get_isFilled() overload
Sourcefn get_is_empty(self) -> bool
fn get_is_empty(self) -> bool
get_isEmpty() 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: IBipedReferences> IBipedReferencesMethods for __T
Available on crate feature
root_motion-bipedreferences only.