smart 0.1.1

dynamically-dispatched smart pointers
Documentation
  • Coverage
  • 100%
    3 out of 3 items documented0 out of 0 items with examples
  • Size
  • Source code size: 22.31 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 429 kB 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
  • withoutboats/smart
    32 1 2
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • withoutboats

smart - dynamically dispatched smart pointers

This library lets you construct a smart pointer dynamically from one of our different pointers which implement shared ownership. It has both a threadsafe (SyncPointer) and non-threadsafe (SharedPointer) construct.

This is useful for when you need an API to dynamically be one of multiple different pointer types. This has a slight overhead (virtual calls), so you should not use this unless you know that's what you want.