Struct predicates::str::Utf8Predicate[][src]

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

Predicate adaper that converts a str predicate to byte predicate.

This is created by pred.from_utf8().

Trait Implementations

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

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

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

impl<P> RefUnwindSafe for Utf8Predicate<P> where
    P: RefUnwindSafe

impl<P> Send for Utf8Predicate<P> where
    P: Send

impl<P> Sync for Utf8Predicate<P> where
    P: Sync

impl<P> Unpin for Utf8Predicate<P> where
    P: Unpin

impl<P> UnwindSafe for Utf8Predicate<P> where
    P: UnwindSafe

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.