This crate provides functionality for serializing and deserializing data based on the Adobe AMF0 encoding specification located at https://wwwimages2.adobe.com/content/dam/acom/en/devnet/pdf/amf0-file-format-specification.pdf
Examples
use Cursor;
use HashMap;
use ;
// Put some data into the Amf0Value types
let mut properties = new;
properties.insert;
properties.insert;
let value1 = Number;
let value2 = Boolean;
let object = Object;
let input = vec!;
// Serialize the values into a vector of bytes
let serialized_data = serialize.unwrap;
// Deserialize the vector of bytes back into Amf0Value types
let mut serialized_cursor = new;
let results = deserialize.unwrap;
assert_eq!;