| 113 | /// Persistence store implementations. |
| 114 | #[derive(Debug, Clone)] |
| 115 | pub enum Store { |
| 116 | Postgres(PostgresStore), |
| 117 | Sqlite(SqliteStore), |
| 118 | } |
| 119 | |
| 120 | /// Trait for inferring an object type string from a message type. |
| 121 | pub trait ObjectType { |
no outgoing calls
no test coverage detected