Struct frunk::semigroup::Any[][src]

pub struct Any<T>(pub T);

Wrapper type for boolean that acts as a bitwise || combination

Trait Implementations

impl<T: PartialEq> PartialEq for Any<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: Debug> Debug for Any<T>
[src]

Formats the value using the given formatter. Read more

impl<T: Eq> Eq for Any<T>
[src]

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl<T: PartialOrd> PartialOrd for Any<T>
[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<T: Ord> Ord for Any<T>
[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<T: Hash> Hash for Any<T>
[src]

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

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

impl Semigroup for Any<bool>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for Any<usize>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for Any<u8>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for Any<u16>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for Any<u32>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for Any<u64>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for Any<isize>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for Any<i8>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for Any<i16>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for Any<i32>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for Any<i64>
[src]

Associative operation taking which combines two values. Read more

impl Monoid for Any<bool>
[src]

For a given Monoid, returns its empty/zero value Read more

impl Monoid for Any<usize>
[src]

For a given Monoid, returns its empty/zero value Read more

impl Monoid for Any<u8>
[src]

For a given Monoid, returns its empty/zero value Read more

impl Monoid for Any<u16>
[src]

For a given Monoid, returns its empty/zero value Read more

impl Monoid for Any<u32>
[src]

For a given Monoid, returns its empty/zero value Read more

impl Monoid for Any<u64>
[src]

For a given Monoid, returns its empty/zero value Read more

impl Monoid for Any<isize>
[src]

For a given Monoid, returns its empty/zero value Read more

impl Monoid for Any<i8>
[src]

For a given Monoid, returns its empty/zero value Read more

impl Monoid for Any<i16>
[src]

For a given Monoid, returns its empty/zero value Read more

impl Monoid for Any<i32>
[src]

For a given Monoid, returns its empty/zero value Read more

impl Monoid for Any<i64>
[src]

For a given Monoid, returns its empty/zero value Read more

Auto Trait Implementations

impl<T> Send for Any<T> where
    T: Send

impl<T> Sync for Any<T> where
    T: Sync