#table #anonymous #size #hold #regardless #store #data

bin+lib anonymous_table

A way to store data regardless of type

10 releases

new 0.3.2 Apr 4, 2024
0.3.1 Apr 4, 2024
0.2.4 Jan 31, 2024
0.1.1 Jan 28, 2024

#805 in Database interfaces

Download history 2/week @ 2024-01-22 12/week @ 2024-01-29 37/week @ 2024-02-19 1/week @ 2024-03-11 337/week @ 2024-04-01

338 downloads per month

MIT license

27KB
610 lines

Anonymous Table


What is it?

An anonymous table is a table in which can hold any form of data, regardless of type or size.

u16 &str u128
String bool CustomStruct

Why is it helpful?

Imagine you are designing a simple 2d game which is populated with different shapes which all have their own properties. For one reason or another, these properties require that different shapes be different types. In order to keep track of all the shapes you decide to store them in a [Vec].

Since each shape is it's own special struct, you have options to store them:

  • Using some enum enum Shape{ Shape1, Shape2, ... } Vec<Shape>
  • Or having a Shape Trait and using Vec<Box<dyn Shape>>

Using an enum can become a burden as adding and removing shapes to the game requires updating the enum and match statements using it.

Using trait objects could work, but just aren't fun or easy to use.

An [AnonymousTable] allows for simple storage and retrieval of data without having to do too much worrying about lifetimes or borrows (the table owns any data passed into it).


How is it used?

An [AnonymousTable] can be made either with either the new() or with_capacity() methods. 'with_capacity()' determines the number of rows that will be kept in the table. Cells are not accessed directly from the table or by the table, instead [AnonymousRow]s hold them. An [AnonymousRow] is made the same way as a table and can be pushed onto a table. With [AnonymousRow].register_named_row(), a row can be added to the table with a name. A name allows the table to keep track of the index of the row for future referencing.

No runtime deps