usesimilar::ChangeTag;/// A maximal span of consecutive graphemes sharing one [`ChangeTag`].
pub(crate)structDiffSpan{/// The change classification shared by every grapheme in the span.
pubtag: ChangeTag,
/// The concatenated grapheme values.
pubvalue: String,
}