Struct predicates::str::NormalizedPredicate[][src]

pub struct NormalizedPredicate<P> where
    P: Predicate<str>, 
{ /* fields omitted */ }

Predicate adapter that normalizes the newlines contained in the variable being tested.

This is created by pred.normalize().

Trait Implementations

impl<P: Clone> Clone for NormalizedPredicate<P> where
    P: Predicate<str>, 
[src]

impl<P: Copy> Copy for NormalizedPredicate<P> where
    P: Predicate<str>, 
[src]

impl<P: Debug> Debug for NormalizedPredicate<P> where
    P: Predicate<str>, 
[src]

impl<P> Display for NormalizedPredicate<P> where
    P: Predicate<str>, 
[src]

impl<P: Eq> Eq for NormalizedPredicate<P> where
    P: Predicate<str>, 
[src]

impl<P: PartialEq> PartialEq<NormalizedPredicate<P>> for NormalizedPredicate<P> where
    P: Predicate<str>, 
[src]

impl<P> Predicate<str> for NormalizedPredicate<P> where
    P: Predicate<str>, 
[src]

impl<P> PredicateReflection for NormalizedPredicate<P> where
    P: Predicate<str>, 
[src]

impl<P> StructuralEq for NormalizedPredicate<P> where
    P: Predicate<str>, 
[src]

impl<P> StructuralPartialEq for NormalizedPredicate<P> where
    P: Predicate<str>, 
[src]

Auto Trait Implementations

impl<P> RefUnwindSafe for NormalizedPredicate<P> where
    P: RefUnwindSafe
[src]

impl<P> Send for NormalizedPredicate<P> where
    P: Send
[src]

impl<P> Sync for NormalizedPredicate<P> where
    P: Sync
[src]

impl<P> Unpin for NormalizedPredicate<P> where
    P: Unpin
[src]

impl<P> UnwindSafe for NormalizedPredicate<P> where
    P: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<P, Item> PredicateBooleanExt<Item> for P where
    Item: ?Sized,
    P: Predicate<Item>, 
[src]

impl<P, Item> PredicateNameExt<Item> for P where
    Item: ?Sized,
    P: Predicate<Item>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.