smart-pointer 0.2.0

Traits for smart pointer functionality.
Documentation
  • Coverage
  • 92.31%
    12 out of 13 items documented0 out of 11 items with examples
  • Size
  • Source code size: 13.36 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 695.31 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 8s Average build duration of successful builds.
  • all releases: 8s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • AljoschaMeyer/smart-pointer-rs
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • AljoschaMeyer

Smart Pointer

A rust module specifying traits for smart pointer functionality, i.e. shared ownership of values. The main intention is to enable data structures that are parameterized by the pointer type to be used internally, allowing the user to enable features such as thread-safety or the ability to handle self-containment as needed. The traits can also serve as a feature checklist for implementers of smart pointers.

See the module documentation for more details.

Note that the usage of this crate remains fairly restricted as long as rust does not support higher-kinded types. The archery crate emulates higher-kinded smart pointers, but has a coarser interface than this crate.