caesura 0.31.0

An all-in-one command line tool to transcode FLAC audio files and upload to gazelle based indexers/trackers
Documentation
1
2
3
4
5
6
7
8
9
use similar::ChangeTag;

/// A maximal span of consecutive graphemes sharing one [`ChangeTag`].
pub(crate) struct DiffSpan {
    /// The change classification shared by every grapheme in the span.
    pub tag: ChangeTag,
    /// The concatenated grapheme values.
    pub value: String,
}