Trait qecs_core::EntityStore [] [src]

pub trait EntityStore: StoreBase {
    fn assign<'id>(&mut self, id: Valid<'id, Self::Id>) -> bool;

    fn release<'id>(&mut self, id: Valid<'id, Self::Id>) -> bool { ... }
}

Required Methods

fn assign<'id>(&mut self, id: Valid<'id, Self::Id>) -> bool

Provided Methods

fn release<'id>(&mut self, id: Valid<'id, Self::Id>) -> bool

Implementors