pub trait LocalEntityAndGlobalEntityConverterMut: LocalEntityAndGlobalEntityConverter {
    // Required method
    fn get_or_reserve_entity(
        &mut self,
        global_entity: &GlobalEntity
    ) -> Result<OwnedLocalEntity, EntityDoesNotExistError>;
}

Required Methods§

source

fn get_or_reserve_entity( &mut self, global_entity: &GlobalEntity ) -> Result<OwnedLocalEntity, EntityDoesNotExistError>

Implementors§