Trait dairy::ToBoxed[][src]

pub trait ToBoxed: ToOwned {
    fn to_boxed(o: Self::Owned) -> Box<Self>;
}
Expand description

Converts the owned version of self into boxed data.

This trait should not be used directly but instead through the .into_boxed() method on Cow.

Required methods

Implementations on Foreign Types

Implementors