/* * SPDX-FileCopyrightText: 2023 Inria * SPDX-FileCopyrightText: 2023 Sebastiano Vigna * * SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later */ /// Example showcasing serialization of an `Option``. use epserde::prelude::*; use maligned::A16; fn main() { let a = Some(vec![0, 1, 2, 3]); let mut cursor = >::new(); // Serialize let _bytes_written = a.serialize(&mut cursor).unwrap(); // Do a full-copy deserialization cursor.set_position(0); let full = >>::deserialize_full(&mut cursor).unwrap(); println!( "Full-copy deserialization type: {}", std::any::type_name::>>(), ); println!("Value: {:x?}", full); println!(); // Do an ε-copy deserialization let eps = >>::deserialize_eps(cursor.as_bytes()).unwrap(); println!( "ε-copy deserialization type: {}", std::any::type_name::<> as DeserializeInner>::DeserType<'_>>(), ); println!("Value: {:x?}", eps); let mut cursor = >::new(); println!("\n"); // Serialize let a: Option> = None; let _bytes_written = a.serialize(&mut cursor).unwrap(); // Do a full-copy deserialization cursor.set_position(0); let full = >>::deserialize_full(&mut cursor).unwrap(); println!( "Full-copy deserialization type: {}", std::any::type_name::>>(), ); println!("Value: {:x?}", full); println!(); // Do an ε-copy deserialization let eps = >>::deserialize_eps(cursor.as_bytes()).unwrap(); println!( "ε-copy deserialization type: {}", std::any::type_name::<> as DeserializeInner>::DeserType<'_>>(), ); println!("Value: {:x?}", eps); }