Trait rapier3d::data::ComponentSetOption[][src]

pub trait ComponentSetOption<T>: Sync {
    fn get(&self, handle: Index) -> Option<&T>;
}
Expand description

A set of optional elements of type T.

Required methods

Get the element associated to the given handle, if there is one.

Implementors