Struct curry::Curry[][src]

pub struct Curry<F>(pub F);

Trait Implementations

impl<F: Debug> Debug for Curry<F>
[src]

Formats the value using the given formatter. Read more

impl<F: Clone> Clone for Curry<F>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<F: Copy> Copy for Curry<F>
[src]

impl<F: PartialEq> PartialEq for Curry<F>
[src]

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

This method tests for !=.

impl<F: Eq> Eq for Curry<F>
[src]

impl<F: PartialOrd> PartialOrd for Curry<F>
[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<F: Ord> Ord for Curry<F>
[src]

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

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl<F: Hash> Hash for Curry<F>
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl<A, F: FnOnce<A>> FnOnce<(A,)> for Curry<F>
[src]

The returned type after the call operator is used.

🔬 This is a nightly-only experimental API. (fn_traits)

Performs the call operation.

impl<A, F: FnMut<A>> FnMut<(A,)> for Curry<F>
[src]

🔬 This is a nightly-only experimental API. (fn_traits)

Performs the call operation.

impl<A, F: Fn<A>> Fn<(A,)> for Curry<F>
[src]

🔬 This is a nightly-only experimental API. (fn_traits)

Performs the call operation.

Auto Trait Implementations

impl<F> Send for Curry<F> where
    F: Send

impl<F> Sync for Curry<F> where
    F: Sync