Enum agnes::join::JoinKind [] [src]

pub enum JoinKind {
    Inner,
    Outer,
    Cross,
}

The kind of join

Variants

Inner Join

Left Outer Join (simply reverse order of call to join() for right outer join)

Full Outer Join, not yet implemented Cross Join (cartesian product)

Trait Implementations

impl Debug for JoinKind
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for JoinKind
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for JoinKind
[src]

Auto Trait Implementations

impl Send for JoinKind

impl Sync for JoinKind