Skip to main content

Crate anda_db_utils

Crate anda_db_utils 

Source
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§

CountingWriter
Utility for counting the size of serialized CBOR data.
UniqueVec
A helper utility to efficiently push or extend a Vec with unique items.

Traits§

Pipe
A trait for functional-style method chaining.