Utilities for safe zero-copy parsing and serialization. This crate provides utilities which make it easy to perform zero-copy parsing and serialization by allowing zero-copy conversion to/from byte slices. This is enabled by three core marker traits, each of which can be derived (e.g., #[derive(FromBytes)]): FromBytes indicates that a type may safely be converted from an arbitrary byte sequence As