dst 0.1.0

Data structures for DSTs
Documentation
  • Coverage
  • 42.86%
    3 out of 7 items documented1 out of 2 items with examples
  • Size
  • Source code size: 39.37 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 3.05 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Wolvereness/dst
    6 0 4
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Wolvereness

This crate is intended to provide data structures that use DSTs (dynamically sized types).

Overview

The goal of this crate is to provide data structures that can store DSTs in a contiguous allocation. Some applications may have a performance benefit for using a contiguous allocation as opposed to multiple pointers.

Currently, the only implementation is a Vec where the DST-tails are slices of the same length.