Type Alias DeString

Source
pub type DeString<'i> = Cow<'i, str>;
Expand description

Type representing a TOML string, payload of the DeValue::String variant

Aliased Type§

enum DeString<'i> {
    Borrowed(&'i str),
    Owned(String),
}

Variants§

§1.0.0

Borrowed(&'i str)

Borrowed data.

§1.0.0

Owned(String)

Owned data.