Trait bevy_ecs::intern::Internable
source · pub trait Internable: Hash + Eq {
// Required methods
fn leak(&self) -> &'static Self;
fn ref_eq(&self, other: &Self) -> bool;
fn ref_hash<H: Hasher>(&self, state: &mut H);
}
Expand description
A trait for internable values.
This is used by Interner<T>
to create static references for values that are interned.
Required Methods§
sourcefn leak(&self) -> &'static Self
fn leak(&self) -> &'static Self
Creates a static reference to self
, possibly leaking memory.
Object Safety§
This trait is not object safe.