#thin #pointer #dst

nightly no-std indyn

Squatted; generic inline DSTs with the erasable crate once ptr_metadata is stable

1 unstable release

0.0.0 Jul 12, 2021

#1 in #squatted

MIT/Apache

35KB
466 lines

Pointer utility crates

  • erasable: Erase pointers of their concrete type.
  • rc-borrow: Borrowed forms of Rc and Arc.
  • rc-box: Known unique forms of Rc and Arc.
  • ptr-union: Pointer unions the size of a pointer.
  • slice-dst: Support for custom slice-based DSTs.

Why not triomphe?

Triomphe is a great atomic reference counting library! The main difference between triomphe and these utilities is that triomphe implements a new Arc type that doesn't support weak references (and as such does not have to pay the cost of handling potential weak references), whereas these pointer utilities use the standard library's reference counting types. If you need to work with standard library Arc/Rc, triomphe won't work for you.

If you want a more battle-tested library by the servo developers, use triomphe. If you want small, self-contained extensions to the standard library types, use these pointer utilities.

Additionally, triomphe only supports atomic reference counting. We provide support for both Arc and Rc, as well as Box where applicable.

Minimum Supported Rust Version

We require a minimum Rust version of 1.41.0. This is for an adjustment of local trait impl checking.

The minimum version of Rust will only be incremented with minor version bumps, not patch version bumps, and will be deliberate and clearly noted in change notes.

License

Licensed under either of

at your option.

If you are a highly paid worker at any company that prioritises profit over people, you can still use this crate. I simply wish you will unionise and push back against the obsession for growth, control, and power that is rampant in your workplace. Please take a stand against the horrible working conditions they inflict on your lesser paid colleagues, and more generally their disrespect for the very human rights they claim to fight for.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~18KB