pub type CowStr<'a> = Cow<'a, str>;
Reusable Clone-on-Write str with lifetime of 'a
'a
pub enum CowStr<'a> { Borrowed(&'a str), Owned(String), }
Borrowed data.
Owned data.