Deserialize a codec from a byte buffer produced by [`Self::to_bytes`].
(buf: &[u8])
| 125 | |
| 126 | /// Deserialize a codec from a byte buffer produced by [`Self::to_bytes`]. |
| 127 | pub fn from_bytes(buf: &[u8]) -> Result<Self, CodecError> { |
| 128 | codec_envelope::decode(Self::ENVELOPE_MAGIC, Self::ENVELOPE_VERSION, buf) |
| 129 | } |
| 130 | |
| 131 | // ── Internal helpers ───────────────────────────────────────────────────── |
| 132 |