Trait dairy::Dairy[][src]

pub trait Dairy<'a>: ToOwned + Sealed {
    type Cow: Cow<'a, Self>;
}
Expand description

Internal trait which allows us to have different Cow implementations for the same type across different platforms.

This is a sealed trait so only this crate can implement it.

Associated Types

Implementations on Foreign Types

Implementors