pub type Id = Entity;
Aliased Type§
struct Id(/* private fields */);
Trait Implementations
source§impl Key for Entity
impl Key for Entity
source§fn null() -> Self
fn null() -> Self
Creates a new key that is always invalid and distinct from any non-null
key. A null key can only be created through this method (or default
initialization of keys made with
new_key_type!
, which calls this
method). Read more