pub struct DifferencePredicate { /* private fields */ }
Expand description
Predicate that diffs two strings.
This is created by the predicate::str::similar
.
Implementations§
Source§impl DifferencePredicate
impl DifferencePredicate
Sourcepub fn split<S>(self, split: S) -> Self
pub fn split<S>(self, split: S) -> Self
The split used when identifying changes.
Common splits include:
""
for char-level." "
for word-level."\n"
for line-level.
Default: "\n"
§Examples
use predicates::prelude::*;
let predicate_fn = predicate::str::similar("Hello World").split(" ");
assert_eq!(true, predicate_fn.eval("Hello World"));
Sourcepub fn distance(self, distance: i32) -> Self
pub fn distance(self, distance: i32) -> Self
The maximum allowed edit distance.
Default: 0
§Examples
use predicates::prelude::*;
let predicate_fn = predicate::str::similar("Hello World!").split("").distance(1);
assert_eq!(true, predicate_fn.eval("Hello World!"));
assert_eq!(true, predicate_fn.eval("Hello World"));
assert_eq!(false, predicate_fn.eval("Hello World?"));
Trait Implementations§
Source§impl Clone for DifferencePredicate
impl Clone for DifferencePredicate
Source§fn clone(&self) -> DifferencePredicate
fn clone(&self) -> DifferencePredicate
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DifferencePredicate
impl Debug for DifferencePredicate
Source§impl Display for DifferencePredicate
impl Display for DifferencePredicate
Source§impl PartialEq for DifferencePredicate
impl PartialEq for DifferencePredicate
Source§impl Predicate<str> for DifferencePredicate
impl Predicate<str> for DifferencePredicate
impl Eq for DifferencePredicate
impl StructuralPartialEq for DifferencePredicate
Auto Trait Implementations§
impl Freeze for DifferencePredicate
impl RefUnwindSafe for DifferencePredicate
impl Send for DifferencePredicate
impl Sync for DifferencePredicate
impl Unpin for DifferencePredicate
impl UnwindSafe for DifferencePredicate
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<P, Item> PredicateBooleanExt<Item> for P
impl<P, Item> PredicateBooleanExt<Item> for P
Source§fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>
fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>
Compute the logical AND of two
Predicate
results, returning the result. Read moreSource§fn or<B>(self, other: B) -> OrPredicate<Self, B, Item>
fn or<B>(self, other: B) -> OrPredicate<Self, B, Item>
Compute the logical OR of two
Predicate
results, returning the result. Read moreSource§impl<P, Item> PredicateBoxExt<Item> for Pwhere
P: Predicate<Item>,
impl<P, Item> PredicateBoxExt<Item> for Pwhere
P: Predicate<Item>,
Source§impl<P, Item> PredicateNameExt<Item> for P
impl<P, Item> PredicateNameExt<Item> for P
Source§impl<P> PredicateStrExt for P
impl<P> PredicateStrExt for P
Source§fn trim(self) -> TrimPredicate<Self>
fn trim(self) -> TrimPredicate<Self>
Source§fn from_utf8(self) -> Utf8Predicate<Self>
fn from_utf8(self) -> Utf8Predicate<Self>
Source§fn normalize(self) -> NormalizedPredicate<Self>
fn normalize(self) -> NormalizedPredicate<Self>
Returns a
NormalizedPredicate
that ensures
the newlines within the data passed to Self
is normalised. Read more