Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

repox::Repo Interface Methods

Introduction

repox::Repo is the main trait interface for the repox framework. Basic CRUD1 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