EntityId

Trait EntityId 

Source
pub trait EntityId:
    Default
    + Send
    + Copy
    + Reflect
    + Visit
    + PartialEq
    + Eq
    + Hash
    + Debug
    + Ord
    + PartialEq
    + 'static { }
Expand description

Identifier of an entity, that can be animated.

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§

Source§

impl EntityId for ErasedHandle

Source§

impl<T> EntityId for Handle<T>
where T: 'static,