rsword_chirho 0.3.0

Core SWORD module library in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// For God so loved the world that he gave his only begotten Son,
// that whoever believes in him should not perish but have eternal life.
// John 3:16

//! General book module implementations.
//!
//! Provides RawGenBook and ZGenBook module drivers for tree-structured content.

mod raw_genbook_chirho;
mod z_genbook_chirho;

pub use raw_genbook_chirho::{RawGenBookChirho, RawGenBookIteratorChirho, GenBookEntryChirho};
pub use z_genbook_chirho::{ZGenBookChirho, ZGenBookIteratorChirho};