4 releases

Uses old Rust 2015

0.1.3 Apr 10, 2018
0.1.2 Apr 10, 2018
0.1.1 Apr 10, 2018
0.1.0 Apr 10, 2018

#2800 in Rust patterns

Download history 726/week @ 2023-10-28 552/week @ 2023-11-04 514/week @ 2023-11-11 634/week @ 2023-11-18 667/week @ 2023-11-25 639/week @ 2023-12-02 768/week @ 2023-12-09 346/week @ 2023-12-16 280/week @ 2023-12-23 261/week @ 2023-12-30 594/week @ 2024-01-06 473/week @ 2024-01-13 413/week @ 2024-01-20 426/week @ 2024-01-27 780/week @ 2024-02-03 885/week @ 2024-02-10

2,558 downloads per month
Used in 9 crates (4 directly)

MIT license

7KB
119 lines

Borrowed-Or-oWned

Provide a Borrowed-Or-oWned smart pointer.

Alternative to Cow for which the Clone trait is not required for the encapsulated type.

Use this crate if you want something like Cow but your type cannot be cloned.

You can find the rustdoc here.

How to use

extern crate boow;
use boow::Bow;
// This struct contains a type for which we cannot know at compile time
// whether it will be owned or borrowed.
struct MyStruct<'a> {
    borrowed_or_owned: Bow<'a, InnerStruct>,
}
struct InnerStruct {
    _stuff: String,
}
impl<'a> MyStruct<'a> {
    // Use borrowed value
    fn from_borrowed(inner: &'a InnerStruct) -> Self {
        Self { borrowed_or_owned: Bow::Borrowed(inner) }
    }
    // Use owned value
    fn from_owned(inner: InnerStruct) -> Self {
        Self { borrowed_or_owned: Bow::Owned(inner) }
    }
}

no_std

If you're interested in using this crate with no_std and the alloc crate, add the following to Cargo.toml:

[dependencies]
boow = { version = "0.1", default-features = false }

Dependencies

~8KB