pub struct Changeset {
pub diffs: Vec<Difference>,
pub split: String,
pub distance: i32,
}Expand description
The information about a full changeset
Fields§
§diffs: Vec<Difference>An ordered vector of Difference objects, coresponding
to the differences within the text
split: StringThe split used when creating the Changeset
Common splits are "" for char-level, " " for word-level and "\n" for line-level.
distance: i32The edit distance of the Changeset
Implementations§
Source§impl Changeset
impl Changeset
Sourcepub fn new(orig: &str, edit: &str, split: &str) -> Changeset
pub fn new(orig: &str, edit: &str, split: &str) -> Changeset
Calculates the edit distance and the changeset for two given strings. The first string is assumed to be the “original”, the second to be an edited version of the first. The third parameter specifies how to split the input strings, leading to a more or less exact comparison.
Common splits are "" for char-level, " " for word-level and "\n" for line-level.
Outputs the edit distance (how much the two strings differ) and a “changeset”, that is
a Vec containing Differences.
§Examples
use difference::{Changeset, Difference};
let changeset = Changeset::new("test", "tent", "");
assert_eq!(changeset.diffs, vec![
Difference::Same("te".to_string()),
Difference::Rem("s".to_string()),
Difference::Add("n".to_string()),
Difference::Same("t".to_string())
]);