serde_epee 0.1.3

Serde support for EPEE
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod de;
pub mod ser;
pub mod section;
pub mod constants;
pub mod error;
pub mod varint;

mod byte_counter;

// Conventional serde package structure
pub use de::{from_bytes, from_reader};
pub use error::{Error, Result, ErrorKind};
pub use ser::{to_bytes, to_writer, serialized_size};

// EPEE-specific data types
pub use section::Section;
pub use varint::VarInt;