epserde 0.13.1

ε-serde is an ε-copy (i.e., almost zero-copy) serialization/deserialization framework
Documentation
/*
 * SPDX-FileCopyrightText: 2023 Inria
 * SPDX-FileCopyrightText: 2023 Sebastiano Vigna
 *
 * SPDX-License-Identifier: Apache-2.0 OR MIT
 */

//! Basic traits that must be implemented by all types using ε-serde.
//!
//! If you use the procedural macro [`Epserde`], you do not need to worry about
//! these traits, as they will be implemented for you.
//!
//! [`Epserde`]: epserde_derive::Epserde

pub mod type_info;
pub use type_info::*;

pub mod copy_type;
pub use copy_type::*;