Enum frunk_core::coproduct::CNil [] [src]

pub enum CNil {}

Phantom type for signature purposes only (has no value)

Used by the macro to terminate the Coproduct type signature

Trait Implementations

impl PartialEq for CNil
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Debug for CNil
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for CNil
[src]

impl Clone for CNil
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for CNil
[src]

impl PartialOrd for CNil
[src]

[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

impl Ord for CNil
[src]

[src]

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

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl Hash for CNil
[src]

[src]

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

1.3.0
[src]

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

impl<F, R> CoproductFoldable<F, R> for CNil
[src]

This is literally impossible; CNil is not instantiable

[src]

Use functions to fold a coproduct into a single value. Read more

impl<'a> ToRef<'a> for CNil
[src]

[src]

impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
[src]

[src]

Extract a subset of the possible types in a coproduct (or get the remaining possibilities) Read more

impl CoproductEmbedder<CNil, HNil> for CNil
[src]

[src]

Convert a coproduct into another that can hold its variants. Read more

impl<Head, Tail> CoproductEmbedder<Coproduct<Head, Tail>, HNil> for CNil where
    CNil: CoproductEmbedder<Tail, HNil>, 
[src]

[src]

Convert a coproduct into another that can hold its variants. Read more

Auto Trait Implementations

impl Send for CNil

impl Sync for CNil