Enum vec_collections::OuterJoinArg[][src]

pub enum OuterJoinArg<K, A, B> {
    Left(K, A),
    Right(K, B),
    Both(K, A, B),
}

Variants

Left(K, A)

Tuple Fields of Left

0: K1: A
Right(K, B)

Tuple Fields of Right

0: K1: B
Both(K, A, B)

Tuple Fields of Both

0: K1: A2: B

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.