Struct select::predicate::Not [] [src]

pub struct Not<T>(pub T);

Matches if the Predicate T does not match.

Trait Implementations

impl<T: Copy> Copy for Not<T>
[src]

impl<T: Clone> Clone for Not<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Debug> Debug for Not<T>
[src]

Formats the value using the given formatter.

impl<T: PartialEq> PartialEq for Not<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T: Predicate> Predicate for Not<T>
[src]