1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//! Generated packed bytes wrappers.

#![doc(hidden)]
#![allow(warnings)]
#![allow(missing_docs)]

#[allow(clippy::all)]
mod blockchain;
#[allow(clippy::all)]
mod extensions;
#[allow(clippy::all)]
mod protocols;

pub mod packed {
    //! Various newtypes of [`bytes::Bytes`], and their associated types.
    //!
    //! These newtypes are thread-safe and immutable binary data with a series of associated methods
    //! to read and convert themselves.
    //!
    //! These newtypes are generated by [Molecule] from [schemas].
    //!
    //! # References:
    //! - [Using the Newtype Pattern to Implement External Traits on External Types](https://doc.rust-lang.org/book/ch19-03-advanced-traits.html#using-the-newtype-pattern-to-implement-external-traits-on-external-types)
    //! - [Using the Newtype Pattern for Type Safety and Abstraction](https://doc.rust-lang.org/book/ch19-04-advanced-types.html#using-the-newtype-pattern-for-type-safety-and-abstraction)
    //!
    //! [`bytes::Bytes`]: https://docs.rs/bytes/*/bytes/#bytes
    //! [Molecule]: https://github.com/nervosnetwork/molecule
    //! [schemas]: https://github.com/nervosnetwork/molecule/blob/df1fdce/docs/schema_language.md#molecule-schema-language
    pub use molecule::prelude::{Byte, ByteReader};

    pub use super::blockchain::*;
    pub use super::extensions::*;
    pub use super::protocols::*;
}