stelae 0.4.1

A collection of tools in Rust and Python for preserving, authenticating, and accessing laws in perpetuity.
Documentation
use async_trait::async_trait;
use serde::{Deserialize, Serialize};

pub mod manager;

/// Trait for managing transactional changed library documents.
#[async_trait]
pub trait TxManager {
    /// Insert bulk of changed library documents.
    async fn insert_bulk(
        &mut self,
        changed_library_document: Vec<ChangedLibraryDocument>,
    ) -> anyhow::Result<()>;
}

#[derive(sqlx::FromRow, Deserialize, Serialize)]
/// Model for library (collection) change events.
pub struct ChangedLibraryDocument {
    /// Foreign key reference to `document_change` id.
    pub document_change_id: String,
    /// Materialized path to the library
    pub library_mpath: String,
}

impl ChangedLibraryDocument {
    /// Create a new library change.
    #[must_use]
    pub const fn new(document_change_id: String, library_mpath: String) -> Self {
        Self {
            document_change_id,
            library_mpath,
        }
    }
}