eryon-mem 0.0.4

this crate implements the memory-related aspects of the eryon framework
/*
    Appellation: records <module>
    Contrib: @FL03
*/
//! this module provides the [`Transaction`] record type and its associated kinds
#[doc(inline)]
pub use self::{transaction::Transaction, types::prelude::*};

pub mod transaction;

pub mod types {
    #[doc(inline)]
    pub use self::prelude::*;

    /// this module defines the various _kinds_ of transactions allowed
    pub mod kinds;

    pub(crate) mod prelude {
        #[doc(inline)]
        pub use super::kinds::*;
    }
}

pub(crate) mod prelude {
    #[doc(inline)]
    pub use super::transaction::*;
    #[doc(inline)]
    pub use super::types::prelude::*;
}