Enum alloc::borrow::Cow1.0.0[][src]

pub enum Cow<'a, B: ?Sized + 'a> where
    B: ToOwned
{ Borrowed(&'a B), Owned(<B as ToOwned>::Owned), }

A clone-on-write smart pointer.

The type Cow is a smart pointer providing clone-on-write functionality: it can enclose and provide immutable access to borrowed data, and clone the data lazily when mutation or ownership is required. The type is designed to work with general borrowed data via the Borrow trait.

Cow implements Deref, which means that you can call non-mutating methods directly on the data it encloses. If mutation is desired, to_mut will obtain a mutable reference to an owned value, cloning if necessary.

If you need reference-counting pointers, note that Rc::make_mut and Arc::make_mut can provide clone-on-write functionality as well.

Examples

use std::borrow::Cow;

fn abs_all(input: &mut Cow<[i32]>) {
    for i in 0..input.len() {
        let v = input[i];
        if v < 0 {
            // Clones into a vector if not already owned.
            input.to_mut()[i] = -v;
        }
    }
}

// No clone occurs because `input` doesn't need to be mutated.
let slice = [0, 1, 2];
let mut input = Cow::from(&slice[..]);
abs_all(&mut input);

// Clone occurs because `input` needs to be mutated.
let slice = [-1, 0, 1];
let mut input = Cow::from(&slice[..]);
abs_all(&mut input);

// No clone occurs because `input` is already owned.
let mut input = Cow::from(vec![-1, 0, 1]);
abs_all(&mut input);
Run

Another example showing how to keep Cow in a struct:

use std::borrow::Cow;

struct Items<'a, X: 'a> where [X]: ToOwned<Owned = Vec<X>> {
    values: Cow<'a, [X]>,
}

impl<'a, X: Clone + 'a> Items<'a, X> where [X]: ToOwned<Owned = Vec<X>> {
    fn new(v: Cow<'a, [X]>) -> Self {
        Items { values: v }
    }
}

// Creates a container from borrowed values of a slice
let readonly = [1, 2];
let borrowed = Items::new((&readonly[..]).into());
match borrowed {
    Items { values: Cow::Borrowed(b) } => println!("borrowed {:?}", b),
    _ => panic!("expect borrowed value"),
}

let mut clone_on_write = borrowed;
// Mutates the data from slice into owned vec and pushes a new value on top
clone_on_write.values.to_mut().push(3);
println!("clone_on_write = {:?}", clone_on_write.values);

// The data was mutated. Let check it out.
match clone_on_write {
    Items { values: Cow::Owned(_) } => println!("clone_on_write contains owned data"),
    _ => panic!("expect owned data"),
}
Run

Variants

Borrowed(&'a B)

Borrowed data.

Owned(<B as ToOwned>::Owned)

Owned data.

Implementations

impl<B: ?Sized + ToOwned> Cow<'_, B>[src]

pub fn is_borrowed(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (cow_is_borrowed #65143)

Returns true if the data is borrowed, i.e. if to_mut would require additional work.

Examples

#![feature(cow_is_borrowed)]
use std::borrow::Cow;

let cow = Cow::Borrowed("moo");
assert!(cow.is_borrowed());

let bull: Cow<'_, str> = Cow::Owned("...moo?".to_string());
assert!(!bull.is_borrowed());
Run

pub fn is_owned(&self) -> bool[src]

🔬 This is a nightly-only experimental API. (cow_is_borrowed #65143)

Returns true if the data is owned, i.e. if to_mut would be a no-op.

Examples

#![feature(cow_is_borrowed)]
use std::borrow::Cow;

let cow: Cow<'_, str> = Cow::Owned("moo".to_string());
assert!(cow.is_owned());

let bull = Cow::Borrowed("...moo?");
assert!(!bull.is_owned());
Run

pub fn to_mut(&mut self) -> &mut <B as ToOwned>::Owned[src]

Acquires a mutable reference to the owned form of the data.

Clones the data if it is not already owned.

Examples

use std::borrow::Cow;

let mut cow = Cow::Borrowed("foo");
cow.to_mut().make_ascii_uppercase();

assert_eq!(
  cow,
  Cow::Owned(String::from("FOO")) as Cow<str>
);
Run

pub fn into_owned(self) -> <B as ToOwned>::Owned[src]

Extracts the owned data.

Clones the data if it is not already owned.

Examples

Calling into_owned on a Cow::Borrowed clones the underlying data and becomes a Cow::Owned:

use std::borrow::Cow;

let s = "Hello world!";
let cow = Cow::Borrowed(s);

assert_eq!(
  cow.into_owned(),
  String::from(s)
);
Run

Calling into_owned on a Cow::Owned is a no-op:

use std::borrow::Cow;

let s = "Hello world!";
let cow: Cow<str> = Cow::Owned(String::from(s));

assert_eq!(
  cow.into_owned(),
  String::from(s)
);
Run

Trait Implementations

impl<'a> Add<&'a str> for Cow<'a, str>1.14.0[src]

type Output = Cow<'a, str>

The resulting type after applying the + operator.

fn add(self, rhs: &'a str) -> Self::Output[src]

Performs the + operation. Read more

impl<'a> Add<Cow<'a, str>> for Cow<'a, str>1.14.0[src]

type Output = Cow<'a, str>

The resulting type after applying the + operator.

fn add(self, rhs: Cow<'a, str>) -> Self::Output[src]

Performs the + operation. Read more

impl<'a> AddAssign<&'a str> for Cow<'a, str>1.14.0[src]

fn add_assign(&mut self, rhs: &'a str)[src]

Performs the += operation. Read more

impl<'a> AddAssign<Cow<'a, str>> for Cow<'a, str>1.14.0[src]

fn add_assign(&mut self, rhs: Cow<'a, str>)[src]

Performs the += operation. Read more

impl<T: ?Sized + ToOwned> AsRef<T> for Cow<'_, T>[src]

fn as_ref(&self) -> &T[src]

Performs the conversion.

impl<'a, B: ?Sized> Borrow<B> for Cow<'a, B> where
    B: ToOwned,
    <B as ToOwned>::Owned: 'a, 
[src]

fn borrow(&self) -> &B[src]

Immutably borrows from an owned value. Read more

impl<B: ?Sized + ToOwned> Clone for Cow<'_, B>[src]

fn clone(&self) -> Self[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)[src]

Performs copy-assignment from source. Read more

impl<B: ?Sized> Debug for Cow<'_, B> where
    B: Debug + ToOwned<Owned: Debug>, 
[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<B: ?Sized> Default for Cow<'_, B> where
    B: ToOwned<Owned: Default>, 
1.11.0[src]

fn default() -> Self[src]

Creates an owned Cow<’a, B> with the default value for the contained owned value.

impl<B: ?Sized + ToOwned> Deref for Cow<'_, B>[src]

type Target = B

The resulting type after dereferencing.

fn deref(&self) -> &B[src]

Dereferences the value.

impl<B: ?Sized> Display for Cow<'_, B> where
    B: Display + ToOwned<Owned: Display>, 
[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<'a> Extend<Cow<'a, str>> for String1.19.0[src]

fn extend<I: IntoIterator<Item = Cow<'a, str>>>(&mut self, iter: I)[src]

Extends a collection with the contents of an iterator. Read more

fn extend_one(&mut self, s: Cow<'a, str>)[src]

🔬 This is a nightly-only experimental API. (extend_one #72631)

Extends a collection with exactly one element.

fn extend_reserve(&mut self, additional: usize)[src]

🔬 This is a nightly-only experimental API. (extend_one #72631)

Reserves capacity in a collection for the given number of additional elements. Read more

impl<'a, T: Clone> From<&'a [T]> for Cow<'a, [T]>1.8.0[src]

fn from(s: &'a [T]) -> Cow<'a, [T]>[src]

Performs the conversion.

impl<'a> From<&'a String> for Cow<'a, str>1.28.0[src]

fn from(s: &'a String) -> Cow<'a, str>[src]

Converts a String reference into a Borrowed variant. No heap allocation is performed, and the string is not copied.

Example

let s = "eggplant".to_string();
assert_eq!(Cow::from(&s), Cow::Borrowed("eggplant"));
Run

impl<'a, T: Clone> From<&'a Vec<T, Global>> for Cow<'a, [T]>1.28.0[src]

fn from(v: &'a Vec<T>) -> Cow<'a, [T]>[src]

Performs the conversion.

impl<'a> From<&'a str> for Cow<'a, str>[src]

fn from(s: &'a str) -> Cow<'a, str>[src]

Converts a string slice into a Borrowed variant. No heap allocation is performed, and the string is not copied.

Example

assert_eq!(Cow::from("eggplant"), Cow::Borrowed("eggplant"));
Run

impl<T: Copy> From<Cow<'_, [T]>> for Box<[T]>1.45.0[src]

fn from(cow: Cow<'_, [T]>) -> Box<[T]>

Notable traits for Box<I, A>

impl<I: Iterator + ?Sized, A: Allocator> Iterator for Box<I, A> type Item = I::Item;impl<F: ?Sized + Future + Unpin, A: Allocator> Future for Box<F, A> where
    A: 'static, 
type Output = F::Output;
[src]

Performs the conversion.

impl From<Cow<'_, str>> for Box<str>1.45.0[src]

fn from(cow: Cow<'_, str>) -> Box<str>

Notable traits for Box<I, A>

impl<I: Iterator + ?Sized, A: Allocator> Iterator for Box<I, A> type Item = I::Item;impl<F: ?Sized + Future + Unpin, A: Allocator> Future for Box<F, A> where
    A: 'static, 
type Output = F::Output;
[src]

Performs the conversion.

impl<'a, T> From<Cow<'a, [T]>> for Vec<T> where
    [T]: ToOwned<Owned = Vec<T>>, 
1.14.0[src]

fn from(s: Cow<'a, [T]>) -> Vec<T>[src]

Convert a clone-on-write slice into a vector.

If s already owns a Vec<T>, it will be returned directly. If s is borrowing a slice, a new Vec<T> will be allocated and filled by cloning s’s items into it.

Examples

let o: Cow<[i32]> = Cow::Owned(vec![1, 2, 3]);
let b: Cow<[i32]> = Cow::Borrowed(&[1, 2, 3]);
assert_eq!(Vec::from(o), Vec::from(b));
Run

impl<'a, B: ?Sized> From<Cow<'a, B>> for Rc<B> where
    B: ToOwned,
    Rc<B>: From<&'a B> + From<B::Owned>, 
1.45.0[src]

fn from(cow: Cow<'a, B>) -> Rc<B>[src]

Performs the conversion.

impl<'a, B: ?Sized> From<Cow<'a, B>> for Arc<B> where
    B: ToOwned,
    Arc<B>: From<&'a B> + From<B::Owned>, 
1.45.0[src]

fn from(cow: Cow<'a, B>) -> Arc<B>[src]

Performs the conversion.

impl<'a> From<Cow<'a, str>> for String1.14.0[src]

fn from(s: Cow<'a, str>) -> String[src]

Performs the conversion.

impl<'a> From<String> for Cow<'a, str>[src]

fn from(s: String) -> Cow<'a, str>[src]

Converts a String into an Owned variant. No heap allocation is performed, and the string is not copied.

Example

let s = "eggplant".to_string();
let s2 = "eggplant".to_string();
assert_eq!(Cow::from(s), Cow::<'static, str>::Owned(s2));
Run

impl<'a, T: Clone> From<Vec<T, Global>> for Cow<'a, [T]>1.8.0[src]

fn from(v: Vec<T>) -> Cow<'a, [T]>[src]

Performs the conversion.

impl<'a, 'b> FromIterator<&'b str> for Cow<'a, str>1.12.0[src]

fn from_iter<I: IntoIterator<Item = &'b str>>(it: I) -> Cow<'a, str>[src]

Creates a value from an iterator. Read more

impl<'a> FromIterator<Cow<'a, str>> for String1.19.0[src]

fn from_iter<I: IntoIterator<Item = Cow<'a, str>>>(iter: I) -> String[src]

Creates a value from an iterator. Read more

impl<'a> FromIterator<String> for Cow<'a, str>1.12.0[src]

fn from_iter<I: IntoIterator<Item = String>>(it: I) -> Cow<'a, str>[src]

Creates a value from an iterator. Read more

impl<'a, T> FromIterator<T> for Cow<'a, [T]> where
    T: Clone
[src]

fn from_iter<I: IntoIterator<Item = T>>(it: I) -> Cow<'a, [T]>[src]

Creates a value from an iterator. Read more

impl<'a> FromIterator<char> for Cow<'a, str>1.12.0[src]

fn from_iter<I: IntoIterator<Item = char>>(it: I) -> Cow<'a, str>[src]

Creates a value from an iterator. Read more

impl<B: ?Sized> Hash for Cow<'_, B> where
    B: Hash + ToOwned
[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl<B: ?Sized> Ord for Cow<'_, B> where
    B: Ord + ToOwned
[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl<T, U> PartialEq<&'_ [U]> for Cow<'_, [T]> where
    T: PartialEq<U>,
    T: Clone
[src]

fn eq(&self, other: &&[U]) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &&[U]) -> bool[src]

This method tests for !=.

impl<T, U> PartialEq<&'_ mut [U]> for Cow<'_, [T]> where
    T: PartialEq<U>,
    T: Clone
[src]

fn eq(&self, other: &&mut [U]) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &&mut [U]) -> bool[src]

This method tests for !=.

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>[src]

fn eq(&self, other: &&'b str) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &&'b str) -> bool[src]

This method tests for !=.

impl<'a, 'b> PartialEq<Cow<'a, str>> for str[src]

fn eq(&self, other: &Cow<'a, str>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Cow<'a, str>) -> bool[src]

This method tests for !=.

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str[src]

fn eq(&self, other: &Cow<'a, str>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Cow<'a, str>) -> bool[src]

This method tests for !=.

impl<'a, 'b> PartialEq<Cow<'a, str>> for String[src]

fn eq(&self, other: &Cow<'a, str>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Cow<'a, str>) -> bool[src]

This method tests for !=.

impl<'a, 'b, B: ?Sized, C: ?Sized> PartialEq<Cow<'b, C>> for Cow<'a, B> where
    B: PartialEq<C> + ToOwned,
    C: ToOwned
[src]

fn eq(&self, other: &Cow<'b, C>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
[src]

This method tests for !=.

impl<'a, 'b> PartialEq<String> for Cow<'a, str>[src]

fn eq(&self, other: &String) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &String) -> bool[src]

This method tests for !=.

impl<T, U, A: Allocator> PartialEq<Vec<U, A>> for Cow<'_, [T]> where
    T: PartialEq<U>,
    T: Clone
[src]

fn eq(&self, other: &Vec<U, A>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Vec<U, A>) -> bool[src]

This method tests for !=.

impl<'a, 'b> PartialEq<str> for Cow<'a, str>[src]

fn eq(&self, other: &str) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &str) -> bool[src]

This method tests for !=.

impl<'a, B: ?Sized> PartialOrd<Cow<'a, B>> for Cow<'a, B> where
    B: PartialOrd + ToOwned
[src]

fn partial_cmp(&self, other: &Cow<'a, B>) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl ToString for Cow<'_, str>1.17.0[src]

fn to_string(&self) -> String[src]

Converts the given value to a String. Read more

impl<B: ?Sized> Eq for Cow<'_, B> where
    B: Eq + ToOwned
[src]

Auto Trait Implementations

impl<'a, B: ?Sized> Send for Cow<'a, B> where
    B: Sync,
    <B as ToOwned>::Owned: Send

impl<'a, B: ?Sized> Sync for Cow<'a, B> where
    B: Sync,
    <B as ToOwned>::Owned: Sync

impl<'a, B: ?Sized> Unpin for Cow<'a, B> where
    <B as ToOwned>::Owned: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&Self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&Self, &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into #41263)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> ToString for T where
    T: Display + ?Sized
[src]

pub default fn to_string(&Self) -> String[src]

Converts the given value to a String. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.