Redb Model
A derive macro for generating [redb] table definitions and (optionally) DTO object
conversion methods/implementations.
Functionality
At a minimum, deriving Model on a named struct will implement the [Model]
trait, declaring redb::TableDefinition as an associated constant.
assert_eq!;
In the example below, we specify the table name as "outbound_edge", and
generate an implementation of [ModelExt], providing common DTO functionality.
#
assert_eq!;
// ModelExt::from_values
let edge = from_values;
let txn = db.begin_write.unwrap;
txn.commit.unwrap;
Struct Attributes
A model can be customized with the model attribute, providing any of the
following arguments:
| Argument | Description | Type | Default |
|---|---|---|---|
table_name |
The table name passed to the definition | String |
<Struct name> (case-sensitive) |
table_type |
Table type, either table or multimap_table |
String |
table |
impl_ext |
Implement [ModelExt] for the type |
bool |
false |
impl_from |
Implement From<T>, mapping T to the from_values(T) and from_guards(T) methods of [ModelExt]. Requires impl_ext. |
bool |
false |
Field Attributes
Values can be customized with the entry attribute. Each field must be specified
as either key or value with the position argument. Note that composite
variables (multiple key or value fields) are combined as tuples in the order
they are defined in the struct.
| Argument | Description | Type | Default |
|---|---|---|---|
position |
The position of the field in an entry, either a key or a value. |
String |
N/A |
Implementation details
General notes regarding trait and type generation.
Type Aliases
As of version 0.9.0, generic arguments have been removed from [Model] and [ModelExt]
in exchange for type aliases. This decision was made to simplify trait definitions.
Take for example the trait below, where we avoid specifying any concrete types;
/// Get the key of model `T` from the implementing model.
let article = from_values;
// Get the user id from an article.
let user_id = article.shared_key_ref;
// or
let user_id = shared_key_ref;
String Table Definitions
redb_model will replace String with &str for table definitions. This
is so that composite (tuple) variables can be borrowed and passed to database
handlers without destructuring the DTO.
Unit type values
The unit type () must be passed if no value is defined.
let k = ;
let v = ;
let e = from_values;
License: MIT OR Apache-2.0