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),
}
Variants§
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.