[][src]Trait abin::BooToOwned

pub trait BooToOwned<TBorrowed: ?Sized, TOwned> {
    fn convert_to_owned(borrowed: &TBorrowed) -> TOwned;
}

Converts the borrowed value of Boo to owned. See Boo::into_owned_with for details.

Required methods

fn convert_to_owned(borrowed: &TBorrowed) -> TOwned

Converts the borrowed value of Boo to owned.

Loading content...

Implementors

impl BooToOwned<[u8], Bin> for NewBin[src]

impl BooToOwned<[u8], SBin> for NewSBin[src]

impl BooToOwned<str, AnyStr<Bin>> for NewStr[src]

impl BooToOwned<str, AnyStr<SBin>> for NewSStr[src]

Loading content...