#borrow #share #sharing #borrowing #reference #data #traits

no-std borrow-or-share

Traits for either borrowing or sharing data

6 releases

0.2.2 Mar 24, 2024
0.2.1 Mar 24, 2024
0.1.0 Mar 6, 2024
0.0.1 Mar 5, 2024

#1051 in Rust patterns

Download history 353/week @ 2024-03-01 65/week @ 2024-03-08 11/week @ 2024-03-15 302/week @ 2024-03-22 49/week @ 2024-03-29 31/week @ 2024-04-05

396 downloads per month

MIT-0 license

12KB
94 lines

borrow-or-share

Traits for either borrowing or sharing data.

crates.io build license

See below for a basic usage of the crate. See the documentation for a detailed walkthrough.

Basic usage

Suppose that you have a generic type that either owns some data or holds a reference to them. You can use this crate to implement on this type a method taking &self that either borrows from *self or from behind a reference it holds:

use borrow_or_share::BorrowOrShare;

struct Text<T>(T);

impl<'i, 'o, T: BorrowOrShare<'i, 'o, str>> Text<T> {
    fn as_str(&'i self) -> &'o str {
        self.0.borrow_or_share()
    }
}

// The returned reference is borrowed from `*text`
// and lives as long as `text`.
fn borrow(text: &Text<String>) -> &str {
    text.as_str()
}

// The returned reference is borrowed from `*text.0`, lives
// longer than `text` and is said to be shared with `*text`.
fn share<'a>(t: &Text<&'a str>) -> &'a str {
    text.as_str()
}

Credit

Credit goes to @beepster4096 for figuring out a safe version of the code.

No runtime deps

Features