| Crates.io | entity-core |
| lib.rs | entity-core |
| version | 0.3.0 |
| created_at | 2026-01-06 06:51:39.285853+00 |
| updated_at | 2026-01-08 03:45:12.036481+00 |
| description | Core traits and types for entity-derive |
| homepage | |
| repository | https://github.com/RAprogramm/entity-derive |
| max_upload_size | |
| id | 2025292 |
| size | 67,584 |
Core traits and types for entity-derive.
This is an internal crate. Use entity-derive directly.
This crate provides the foundational types used by entity-derive:
Repository<T> - Base repository trait for CRUD operationsPagination - Type-safe pagination with offset/limitSortDirection - Enum for ASC/DESC orderingThese types are re-exported from entity-derive, so you typically don't need to depend on this crate directly:
use entity_derive::{Entity, Pagination, SortDirection};
let page = Pagination::page(0, 25);
For complete documentation, examples, and usage guide, see:
MIT License - see LICENSE