pointers 0.0.1

trait for smart pointers, alternation to Arc, Intrusive ref counting
Documentation
  • Coverage
  • 33.33%
    3 out of 9 items documented0 out of 7 items with examples
  • Size
  • Source code size: 6.81 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 318.97 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 2s Average build duration of successful builds.
  • all releases: 4s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • frostyplanet

pointers

This crate provide two traits for generic coding:

  • [Pointer] trait:

    • raw pointers: *const T, *mut T, NonNull<T>,
    • owned: Box<T>,
    • multiple-ownership:
  • [SmartPointer]: type that has new() method

Feature Flags

  • default: only the traits.