[][src]Trait mown::ToOwned

pub trait ToOwned {
    type Owned: Borrow<Self>;
}

Types that can be owned.

Associated Types

type Owned: Borrow<Self>

Loading content...

Implementations on Foreign Types

impl ToOwned for str[src]

type Owned = String

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

type Owned = Vec<T>

Loading content...

Implementors

impl<T: Sized> ToOwned for T[src]

type Owned = T

Loading content...