/// Ensures that a data structure is converted to bytes before it is sent over the wire
pubtraitTuringPacket<'tp> {/// ### Converts a data structure into bytes in order to be sent over the wire
/// #### Usage
/// ```
/// use crate::TuringPacket;
////// struct Foo;
////// impl TuringPacket for Foo {
/// fn into_packet(value: T) -> &'tp [u8] {
/// value.as_bytes()
/// }
/// }
/// ```
fninto_packet<T>(value: T)->&'tp[u8];}