pub fn turbo_bincode_encode<T: Encode>(
value: &T,
) -> Result<TurboBincodeBuffer, EncodeError>Expand description
Encode the value into a new [SmallVec] using a TurboBincodeEncoder.
Note: If you can re-use a buffer, you should. That will always be cheaper than creating a new
[SmallVec].