// Stuf goes here
pubconstEMPTY:ByteHunk<'static>= ByteHunk{ bytes:&[]};/// Represents a hunk of raw data constructed from an in-memory byte
/// array.
pubstructByteHunk<'a>{pubbytes:&'a [u8]
}impl<'a>ByteHunk<'a>{pubfnnew(bytes:&'a [u8])->ByteHunk<'a>{
ByteHunk{bytes}}}