repox 0.1.0

trait framework for data repository patterns
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# **`repox::Repo Interface Methods`**

> **Introduction**
>
> > `repox::Repo` is the main trait interface for the `repox` framework.
> > Basic CRUD[^1] operations are supported by repository traits, such
> > as `DeleteById<T>`, `Insert<T>`, and many others. These allow
> > application developers to define simple repository interfaces
> > which can be implemented by any back-end, like SQL databases, NoSQL,
> > or even in-memory data structures.

[^1]: `Create`, `Read`, `Update`, `Delete`