interledger-packet 0.1.0

Interledger packet serialization/deserialization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # interledger-packet
//!
//! Interledger packet serialization/deserialization.

mod error;
mod errors;
#[cfg(test)]
mod fixtures;
pub mod oer;
mod packet;

pub use self::error::{ErrorClass, ErrorCode};
pub use self::errors::ParseError;

pub use self::packet::MaxPacketAmountDetails;
pub use self::packet::{Fulfill, Packet, PacketType, Prepare, Reject};
pub use self::packet::{FulfillBuilder, PrepareBuilder, RejectBuilder};