1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//#![deny(missing_docs)] // TODO: Complete missing documentation and enable this option
#![deny(missing_debug_implementations)]
#![deny(intra_doc_link_resolution_failure)]
#![cfg_attr(test, deny(warnings))]

//! # ofdb-entities
//!
//! Reusable, agnostic domain entities for OpenFairDB.
//!
//! The entities only contain generic functionality that does not reveal any application-specific business logic.

pub mod activity;
pub mod address;
pub mod category;
pub mod clearance;
pub mod comment;
pub mod contact;
pub mod email;
pub mod event;
pub mod geo;
pub mod id;
pub mod links;
pub mod location;
pub mod nonce;
pub mod organization;
pub mod password;
pub mod place;
pub mod rating;
pub mod review;
pub mod revision;
pub mod subscription;
pub mod tag;
pub mod time;
pub mod user;

#[cfg(any(test, feature = "builders"))]
pub mod builders;