# cervine [![Lib.rs](https://img.shields.io/badge/Lib.rs-*-84f)](https://lib.rs/crates/cervine) [![Crates.io](https://img.shields.io/crates/v/cervine)](https://crates.io/crates/cervine) [![Docs.rs](https://docs.rs/cervine/badge.svg)](https://docs.rs/crates/cervine) ![Rust 1.42.0](https://img.shields.io/static/v1?logo=Rust&label=&message=1.42.0&color=grey) [![Build Status](https://travis-ci.com/Tamschi/cervine.svg?branch=unstable)](https://travis-ci.com/Tamschi/cervine/branches) ![Crates.io - License](https://img.shields.io/crates/l/cervine/0.0.6) [![GitHub](https://img.shields.io/static/v1?logo=GitHub&label=&message=%20&color=grey)](https://github.com/Tamschi/cervine) [![open issues](https://img.shields.io/github/issues-raw/Tamschi/cervine)](https://github.com/Tamschi/cervine/issues) [![open pull requests](https://img.shields.io/github/issues-pr-raw/Tamschi/cervine)](https://github.com/Tamschi/cervine/pulls) [![crev reviews](https://web.crev.dev/rust-reviews/badge/crev_count/cervine.svg)](https://web.crev.dev/rust-reviews/crate/cervine/) A slightly more flexible clone-on-write smart pointer; roughly to [`T: Borrow`] 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. [`T: Borrow`]: https://doc.rust-lang.org/stable/alloc/borrow/trait.Borrow.html [`alloc::borrow::Cow`]: https://doc.rust-lang.org/stable/alloc/borrow/enum.Cow.html [`B: ToOwned`]: https://doc.rust-lang.org/stable/alloc/borrow/trait.ToOwned.html [smartstring]: https://lib.rs/crates/smartstring [`String`]: https://docs.rs/smartstring/0.2.3/smartstring/alias/type.String.html [`alloc`'s]: https://doc.rust-lang.org/stable/alloc/string/struct.String.html [Serde]: https://lib.rs/crates/serde [`serde::Serialize`]: https://docs.rs/serde/1.0.115/serde/trait.Serialize.html [specialization]: https://github.com/rust-lang/rust/issues/31844 ## Installation Please use [cargo-edit](https://crates.io/crates/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::*; use std::borrow::Borrow as _; let data = [true, false]; let mut cow = Cow::Borrowed(&data); if thread_rng().gen() { cow = Cow::Owned([false, true]); } let array_ref: &[bool; 2] = cow.borrow(); ``` 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 str_ref: &str = cow.as_ref(); ``` ## License Licensed under either of * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or ) * MIT license ([LICENSE-MIT](LICENSE-MIT) or ) 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](CODE_OF_CONDUCT.md) ## [Changelog](CHANGELOG.md) ## Versioning `cervine` strictly follows [Semantic Versioning 2.0.0](https://semver.org/spec/v2.0.0.html) 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](CHANGELOG.md).