Struct revord::RevOrd [] [src]

pub struct RevOrd<V>(pub V);

Type that should be ordered in the reverse order of any value it contains.

This only implements the ordering traits when V does, and will never implement any traits other than PartialEq, PartialOrd, Eq, and Ord. Extract the value to use it in other ways. Note: revord_var.0 can be used to extract the value

Trait Implementations

impl<V> PartialEq for RevOrd<V> where
    V: PartialEq
[src]

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

This method tests for !=.

impl<V> PartialOrd for RevOrd<V> where
    V: PartialOrd
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<V> Eq for RevOrd<V> where
    V: Eq
[src]

impl<V> Ord for RevOrd<V> where
    V: Ord
[src]

This method returns an Ordering between self and other. Read more