CowString

Type Alias CowString 

Source
pub type CowString = Cow<'static, str>;
Expand description

Cow-optimized string for contexts where we may or may not own the data

Aliased Type§

pub enum CowString {
    Borrowed(&'static str),
    Owned(String),
}

Variants§

§1.0.0

Borrowed(&'static str)

Borrowed data.

§1.0.0

Owned(String)

Owned data.