pub type DeString<'i> = Cow<'i, str>;
Available on crate feature
parse
only.Expand description
Type representing a TOML string, payload of the DeValue::String
variant
Aliased Type§
pub enum DeString<'i> {
Borrowed(&'i str),
Owned(String),
}