pub type ImStr<'a> = Cow<'a, str>;
Represents a borrowed string that can be either a Rust string slice or an ImString
pub enum ImStr<'a> { Borrowed(&'a str), Owned(String), }
Borrowed data.
Owned data.