tycho 0.1.2

A minimal, self-describing and traversable binary data format designed around rust and the serde data model.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Wrappers around `HashMap` and `Vec` mapping to a respective type within tycho.
//!
//!
//! These functions come in handy when creating objects/elements manually or want a specific
//! serialisation target when using serde.

pub use array::Array;
pub use list::List;
pub use map::Map;
pub use struct_::Struct;
pub use bytes::Bytes;

pub(crate) mod array;
pub(crate) mod list;
pub(crate) mod map;
pub(crate) mod struct_;
pub(crate) mod bytes;