//! This module provides the api definition for working with lib3h
extern crate serde;
extern crate serde_derive;
extern crate rmp_serde;
/// Opaque Address Bytes
pub type Address = ;
pub type AddressRef = ;
/// type name for a bool indicating if work was done during a `process()`
pub type DidWork = bool;
/// TODO: To replace with our own custom Error handling
use Error;
pub type Lib3hResult<T> = ;