1
2
3
4
5
6
7
//! Reexport of Cow

#[cfg(not(feature = "beef"))]
pub use std::borrow::Cow;

#[cfg(feature = "beef")]
pub use beef::lean::Cow;