Closed panicbit closed 7 years ago
Only a single type with the signature Packet<'a> would really be needed.
Packet<'a>
CowPacket<'a>
RcPacket
Packet<'static>
RefPacket<'a>
Conversion functions to go from Packet<'a> to Packet<'static> should be provided and are basically already implemented in the form of into_rc.
into_rc
Only a single type with the signature
Packet<'a>
would really be needed.CowPacket<'a>
:arrow_right: obsoleteRcPacket
:arrow_right:Packet<'static>
RefPacket<'a>
:arrow_right:Packet<'a>
Conversion functions to go from
Packet<'a>
toPacket<'static>
should be provided and are basically already implemented in the form ofinto_rc
.