Expand description
Shared utility types used by the AndaDB workspace.
The crate intentionally stays small and dependency-light. It currently provides:
UniqueVec, an insertion-ordered vector that rejects duplicates.CountingWriter, a writer that counts serialized bytes without storing the payload.Pipe, a small functional-style chaining trait.
Structs§
- Counting
Writer - Utility for counting the size of serialized CBOR data.
- Unique
Vec - A helper utility to efficiently push or extend a
Vecwith unique items.
Traits§
- Pipe
- A trait for functional-style method chaining.