Functionsยง
- marshal
- marshal_
auto - Serialize a
Nodeusing a conservative auto strategy. - marshal_
exact - Serialize a
Nodeusing a two-pass strategy: - marshal_
ref - Zero-copy serialization of a
NodeRefto a newVec<u8>. Prefermarshal_ref_towith a reusable buffer for best performance. - marshal_
ref_ auto - Serialize a
NodeRefusing the same conservative auto strategy asmarshal_auto. - marshal_
ref_ exact - Serialize a
NodeRefusing a two-pass exact-size strategy. - marshal_
ref_ to - Zero-copy serialization of a
NodeRefdirectly into a writer. This avoids the allocation overhead of converting to an ownedNodefirst. - marshal_
ref_ to_ vec - Serialize a borrowed node directly into a
Vec<u8>using the fast vec writer path. - marshal_
to - marshal_
to_ vec - Serialize an owned node directly into a
Vec<u8>using the fast vec writer path. - unmarshal_
ref