event_hex 0.0.3

A pragmatic Rust toolkit for Domain-Driven Design with first-class support for event sourcing and CQRS.
Documentation
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use uuid::Uuid;

#[derive(Debug, Clone, Default, Serialize, Deserialize, PartialEq, Eq, Hash)]
pub struct Auditable {
    created_at: DateTime<Utc>,
    updated_at: DateTime<Utc>,
    created_by: Uuid,
    updated_by: Uuid,
    deleted: bool,
}

impl Auditable {
    pub fn build_new(current_user_id: Uuid) -> Self {
        let now = Utc::now();
        let created_at = now;
        let updated_at = now;
        let created_by = current_user_id;
        let updated_by = current_user_id;
        let deleted = false;
        Auditable {
            created_at,
            updated_at,
            created_by,
            updated_by,
            deleted,
        }
    }
}