1 2 3 4 5 6 7
//! This is a module to contain types that have complicated serialisation logic. //! //! Currently, there are two types - [`imaginary::Imaginary`] and [`integer::Integer`]. pub mod binary; pub mod imaginary; pub mod integer;