#rc #intrusive #smart-pointers #arc #no-std

no-std tiptoe

An easy-to-support intrusively reference-counting smart pointer

2 releases

0.0.2 Nov 12, 2021
0.0.1 Nov 8, 2021

#2371 in Rust patterns

Download history 23/week @ 2024-01-07 113/week @ 2024-01-14 9/week @ 2024-02-18 53/week @ 2024-02-25 10/week @ 2024-03-03 34/week @ 2024-03-10 39/week @ 2024-03-17

136 downloads per month

MIT/Apache

38KB
600 lines

tiptoe

Lib.rs Crates.io Docs.rs

Rust 1.51 CI Crates.io - License

GitHub open issues open pull requests good first issues

crev reviews Zulip Chat

An easy-to-support intrusively reference-counting smart pointer.

Installation

Please use cargo-edit to always add the latest version of this library:

cargo add tiptoe --features sync

Features

"sync"

Enables the [Arc] type, which requires AtomicUsize.

Example

use pin_project::pin_project;
use tiptoe::{IntrusivelyCountable, TipToe};

// All attributes optional.
#[pin_project]
#[derive(Debug, Default, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct A {
    #[pin]
    ref_counter: TipToe,
}

unsafe impl IntrusivelyCountable for A {
    type RefCounter = TipToe;

    fn ref_counter(&self) -> &Self::RefCounter {
        &self.ref_counter
    }
}

fn main() {
    #[cfg(feature = "sync")]
    {
        use tiptoe::Arc;

        let arc = Arc::new(A::default());
        let inner_ref: &A = &arc;

        let another_arc = unsafe {
            Arc::borrow_from_inner_ref(&inner_ref)
        }.clone();
    }
}

Implementation Progress

This library is currently only implemented about as far as I need it for rhizome.

Please have a look at the issues if you'd like to help out.

Notable current omissions: Rc, Weak, and most optimisation that doesn't affect the API.

License

Licensed under either of

at your option.

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.

See CONTRIBUTING for more information.

Code of Conduct

Changelog

Versioning

tiptoe strictly follows Semantic Versioning 2.0.0 with the following exceptions:

  • The minor version will not reset to 0 on major version changes (except for v1).
    Consider it the global feature level.
  • The patch version will not reset to 0 on major or minor version changes (except for v0.1 and v1).
    Consider it the global patch level.

This includes the Rust version requirement specified above.
Earlier Rust versions may be compatible, but this can change with minor or patch releases.

Which versions are affected by features and patches can be determined from the respective headings in CHANGELOG.md.

Note that dependencies of this crate may have a more lenient MSRV policy! Please use cargo +nightly update -Z minimal-versions in your automation if you don't generate Cargo.lock manually (or as necessary) and require support for a compiler older than current stable.

Dependencies

~39KB