1 2 3 4 5 6 7 8 9 10 11 12
//! trans module document //! pub mod cow; mod eid; pub mod trans; mod txid; mod txmgr; pub use self::eid::{Eid, Id, CloneNew}; pub use self::txmgr::{TxMgr, TxMgrRef, TxHandle}; pub use self::txid::Txid;