Type Alias Fragment
pub type Fragment<'a> = Cow<'a, str>;
Available on crate feature
advanced
only.Expand description
A fragment of Text
.
This is just an alias to a string that may be either borrowed or owned.
Aliased Type§
enum Fragment<'a> {
Borrowed(&'a str),
Owned(String),
}