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.

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

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