pub struct Separated<'qb, 'args: 'qb, DB, Sep> where
    DB: Database
{ /* private fields */ }
Expand description

A wrapper around QueryBuilder for creating comma(or other token)-separated lists.

See QueryBuilder::separated() for details.

Implementations

Push the separator if applicable, and then the given SQL fragment.

See QueryBuilder::push() for details.

Push a SQL fragment without a separator.

Simply calls QueryBuilder::push() directly.

Push the separator if applicable, then append a bind argument.

See QueryBuilder::push_bind() for details.

Push a bind argument placeholder (? or $N for Postgres) and bind a value to it without a separator.

Simply calls QueryBuilder::push_bind() directly.

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

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.