repox 0.1.0

trait framework for data repository patterns
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::*;

pub use creatable::{Creatable, CreateWith};
pub use delete_by_id::{DeleteById, DeleteStatus};
pub use fetch_by_id::{FetchById, FetchError};
pub use fetch_with_children_by_id::{FetchWithChildrenById, FetchWithChildrenError};
pub use fetch_with_parent_by_id::{FetchWithParentById, FetchWithParentError};
pub use insert::{Insert, InsertError};
pub use update_by_id::{UpdateById, UpdateError};

mod creatable;
mod delete_by_id;
mod fetch_by_id;
mod fetch_with_children_by_id;
mod fetch_with_parent_by_id;
mod insert;
mod update_by_id;