cervine

Lib.rs Crates.io Docs.rs

Rust 1.46.0 Build Status Crates.io - License

GitHub open issues open pull requests crev reviews

A slightly more flexible clone-on-write smart pointer; roughly to [T: Borrow<R>] as [alloc::borrow::Cow] is to [B: ToOwned].

The owned and reference types can be chosen independently, which means for example [smartstring]'s [String] can be used in the owned variant instead of [alloc's].

[Serde] support is optional via the "serde" feature and no_std-compatible.
Note that deserialisation currently always happens by value and [serde::Serialize] is looked up only on the reference type. This may change in a major version upgrade, likely only after [specialization] becomes available.

Installation

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

cmd cargo add cervine

Examples

Same type (T = R = [bool; 2]):

```rust use cervine::Cow; use rand::prelude::*;

let data = [true, false]; let mut cow = Cow::Borrowed(&data);

if thread_rng().gen() { cow = Cow::Owned([false, true]); }

let arrayref: &[bool; 2] = cow.asref(); ```

Different types (T = String and R = str):

```rust use cervine::Cow; use rand::prelude::*; use smartstring::alias::String;

let mut cow = Cow::Borrowed("borrowed");

if thread_rng().gen() { cow = Cow::Owned(String::from("owned")); }

let strref: &str = cow.asref(); ```

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.

Code of Conduct

Changelog

Versioning

cervine strictly follows Semantic Versioning 2.0.0 with the following exceptions:

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.