Enum protobuf_codec::field::branch::Branch2 [] [src]

pub enum Branch2<A, B> {
    A(A),
    B(B),
}

Value of Oneof that has 2-fields.

Variants

Trait Implementations

impl<A: Debug, B: Debug> Debug for Branch2<A, B>
[src]

[src]

Formats the value using the given formatter. Read more

impl<A: Clone, B: Clone> Clone for Branch2<A, B>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<A: Copy, B: Copy> Copy for Branch2<A, B>
[src]

impl<A: PartialEq, B: PartialEq> PartialEq for Branch2<A, B>
[src]

[src]

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

[src]

This method tests for !=.

impl<A: Eq, B: Eq> Eq for Branch2<A, B>
[src]

impl<A: Hash, B: Hash> Hash for Branch2<A, B>
[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<A: PartialOrd, B: PartialOrd> PartialOrd for Branch2<A, B>
[src]

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

impl<A: Ord, B: Ord> Ord for Branch2<A, B>
[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

Auto Trait Implementations

impl<A, B> Send for Branch2<A, B> where
    A: Send,
    B: Send

impl<A, B> Sync for Branch2<A, B> where
    A: Sync,
    B: Sync