[][src]Trait diesel::query_source::Plus

pub trait Plus<T> {
    type Output;
}

Add two peano numbers together.

This is used to determine the number of times a table appears in a from clause when the from clause contains a join.

Associated Types

type Output

The result of adding these numbers together

Loading content...

Implementors

impl Plus<MoreThanOnce> for Once[src]

impl Plus<Never> for Once[src]

type Output = Self

impl Plus<Once> for Once[src]

impl<T> Plus<T> for MoreThanOnce[src]

type Output = Self

impl<T> Plus<T> for Never[src]

type Output = T

Loading content...