Struct frunk::semigroup::All[][src]

pub struct All<T>(pub T);

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

Trait Implementations

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

Formats the value using the given formatter. Read more

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

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl<T: PartialOrd> PartialOrd for All<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 All<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 All<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 All<bool>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for All<usize>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for All<u8>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for All<u16>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for All<u32>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for All<u64>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for All<isize>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for All<i8>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for All<i16>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for All<i32>
[src]

Associative operation taking which combines two values. Read more

impl Semigroup for All<i64>
[src]

Associative operation taking which combines two values. Read more

impl Monoid for All<bool>
[src]

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

impl Monoid for All<usize>
[src]

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

impl Monoid for All<u8>
[src]

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

impl Monoid for All<u16>
[src]

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

impl Monoid for All<u32>
[src]

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

impl Monoid for All<u64>
[src]

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

impl Monoid for All<isize>
[src]

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

impl Monoid for All<i8>
[src]

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

impl Monoid for All<i16>
[src]

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

impl Monoid for All<i32>
[src]

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

impl Monoid for All<i64>
[src]

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

Auto Trait Implementations

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

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