pub struct Postgres<'a> { /* private fields */ }
Expand description
A visitor to generate queries for the PostgreSQL database.
The returned parameter values implement the ToSql
trait from postgres and
can be used directly with the database.
Trait Implementations§
source§impl<'a> Visitor<'a> for Postgres<'a>
impl<'a> Visitor<'a> for Postgres<'a>
source§fn visit_column(&mut self, column: Column<'a>) -> Result
fn visit_column(&mut self, column: Column<'a>) -> Result
A database column identifier
source§const C_BACKTICK_OPEN: &'static str = "\""
const C_BACKTICK_OPEN: &'static str = "\""
Opening backtick character to surround identifiers, such as column and table names.
source§const C_BACKTICK_CLOSE: &'static str = "\""
const C_BACKTICK_CLOSE: &'static str = "\""
Closing backtick character to surround identifiers, such as column and table names.
source§const C_WILDCARD: &'static str = "%"
const C_WILDCARD: &'static str = "%"
Wildcard character to be used in
LIKE
queries.source§fn build<Q>(query: Q) -> Result<(String, Vec<Value<'a>>)>where
Q: Into<Query<'a>>,
fn build<Q>(query: Q) -> Result<(String, Vec<Value<'a>>)>where Q: Into<Query<'a>>,
Convert the given
Query
to an SQL string and a vector of parameters.
When certain parameters are replaced with the C_PARAM
character in the
query, the vector should contain the parameter value in the right position. Read moresource§fn add_parameter(&mut self, value: Value<'a>)
fn add_parameter(&mut self, value: Value<'a>)
When called, the visitor decided to not render the parameter into the query,
replacing it with the
C_PARAM
, calling add_parameter
with the replaced value.source§fn parameter_substitution(&mut self) -> Result
fn parameter_substitution(&mut self) -> Result
What to use to substitute a parameter in the query.
fn visit_parameterized_enum( &mut self, variant: EnumVariant<'a>, name: Option<EnumName<'a>> ) -> Result
fn visit_parameterized_enum_array( &mut self, variants: Vec<EnumVariant<'a>>, name: Option<EnumName<'a>> ) -> Result
source§fn visit_limit_and_offset(
&mut self,
limit: Option<Value<'a>>,
offset: Option<Value<'a>>
) -> Result
fn visit_limit_and_offset( &mut self, limit: Option<Value<'a>>, offset: Option<Value<'a>> ) -> Result
The
LIMIT
and OFFSET
statement in the querysource§fn visit_raw_value(&mut self, value: Value<'a>) -> Result
fn visit_raw_value(&mut self, value: Value<'a>) -> Result
Visit a non-parameterized value.
source§fn visit_insert(&mut self, insert: Insert<'a>) -> Result
fn visit_insert(&mut self, insert: Insert<'a>) -> Result
A walk through an
INSERT
statementsource§fn visit_aggregate_to_string(&mut self, value: Expression<'a>) -> Result
fn visit_aggregate_to_string(&mut self, value: Expression<'a>) -> Result
What to use to substitute a parameter in the query.
fn visit_equals( &mut self, left: Expression<'a>, right: Expression<'a> ) -> Result
fn visit_not_equals( &mut self, left: Expression<'a>, right: Expression<'a> ) -> Result
fn visit_json_extract(&mut self, json_extract: JsonExtract<'a>) -> Result
fn visit_json_unquote(&mut self, json_unquote: JsonUnquote<'a>) -> Result
fn visit_json_array_contains( &mut self, left: Expression<'a>, right: Expression<'a>, not: bool ) -> Result
fn visit_json_extract_last_array_item( &mut self, extract: JsonExtractLastArrayElem<'a> ) -> Result
fn visit_json_extract_first_array_item( &mut self, extract: JsonExtractFirstArrayElem<'a> ) -> Result
fn visit_json_type_equals( &mut self, left: Expression<'a>, json_type: JsonType<'a>, not: bool ) -> Result
fn visit_json_array_agg(&mut self, array_agg: JsonArrayAgg<'a>) -> Result
fn visit_json_build_object(&mut self, build_obj: JsonBuildObject<'a>) -> Result
fn visit_text_search(&mut self, text_search: TextSearch<'a>) -> Result
fn visit_matches( &mut self, left: Expression<'a>, right: Cow<'a, str>, not: bool ) -> Result
fn visit_text_search_relevance( &mut self, text_search_relevance: TextSearchRelevance<'a> ) -> Result
fn visit_like(&mut self, left: Expression<'a>, right: Expression<'a>) -> Result
fn visit_not_like( &mut self, left: Expression<'a>, right: Expression<'a> ) -> Result
source§fn visit_ordering(&mut self, ordering: Ordering<'a>) -> Result
fn visit_ordering(&mut self, ordering: Ordering<'a>) -> Result
A visit in the
ORDER BY
section of the queryfn visit_concat(&mut self, concat: Concat<'a>) -> Result
fn visit_min(&mut self, min: Minimum<'a>) -> Result
fn visit_max(&mut self, max: Maximum<'a>) -> Result
source§fn visit_delete(&mut self, delete: Delete<'a>) -> Result
fn visit_delete(&mut self, delete: Delete<'a>) -> Result
A walk through an
DELETE
statementsource§fn compatibility_modifications(&self, query: Query<'a>) -> Query<'a>
fn compatibility_modifications(&self, query: Query<'a>) -> Query<'a>
A point to modify an incoming query to make it compatible with the
underlying database.
fn surround_with<F>(&mut self, begin: &str, end: &str, f: F) -> Resultwhere F: FnOnce(&mut Self) -> Result,
fn columns_to_bracket_list(&mut self, columns: Vec<Column<'a>>) -> Result
source§fn visit_parameterized(&mut self, value: Value<'a>) -> Result
fn visit_parameterized(&mut self, value: Value<'a>) -> Result
A visit to a value we parameterize
fn visit_join_data(&mut self, data: JoinData<'a>) -> Result
source§fn visit_select(&mut self, select: Select<'a>) -> Result
fn visit_select(&mut self, select: Select<'a>) -> Result
A walk through a
SELECT
statementsource§fn visit_update(&mut self, update: Update<'a>) -> Result
fn visit_update(&mut self, update: Update<'a>) -> Result
A walk through an
UPDATE
statementfn visit_upsert(&mut self, update: Update<'a>) -> Result
fn visit_update_set(&mut self, update: Update<'a>) -> Result
source§fn delimited_identifiers(&mut self, parts: &[&str]) -> Result
fn delimited_identifiers(&mut self, parts: &[&str]) -> Result
A helper for delimiting an identifier, surrounding every part with
C_BACKTICK
and delimiting the values with a .
source§fn surround_with_backticks(&mut self, part: &str) -> Result
fn surround_with_backticks(&mut self, part: &str) -> Result
A helper for delimiting a part of an identifier, surrounding it with
C_BACKTICK
source§fn visit_merge(&mut self, _merge: Merge<'a>) -> Result
fn visit_merge(&mut self, _merge: Merge<'a>) -> Result
Visit an SQL
MERGE
query.source§fn visit_query(&mut self, query: Query<'a>) -> Result
fn visit_query(&mut self, query: Query<'a>) -> Result
A walk through a complete
Query
statementfn visit_sub_selection(&mut self, query: SelectQuery<'a>) -> Result
fn visit_selection(&mut self, query: SelectQuery<'a>) -> Result
source§fn visit_union(&mut self, ua: Union<'a>) -> Result
fn visit_union(&mut self, ua: Union<'a>) -> Result
A walk through a union of
SELECT
statementssource§fn visit_columns(&mut self, columns: Vec<Expression<'a>>) -> Result
fn visit_columns(&mut self, columns: Vec<Expression<'a>>) -> Result
The selected columns
fn visit_operation(&mut self, op: SqlOp<'a>) -> Result
source§fn visit_expression(&mut self, value: Expression<'a>) -> Result
fn visit_expression(&mut self, value: Expression<'a>) -> Result
A visit to a value used in an expression
fn visit_multiple_tuple_comparison( &mut self, left: Row<'a>, right: Values<'a>, negate: bool ) -> Result
fn visit_values(&mut self, values: Values<'a>) -> Result
source§fn visit_table(&mut self, table: Table<'a>, include_alias: bool) -> Result
fn visit_table(&mut self, table: Table<'a>, include_alias: bool) -> Result
A database table identifier
source§fn visit_conditions(&mut self, tree: ConditionTree<'a>) -> Result
fn visit_conditions(&mut self, tree: ConditionTree<'a>) -> Result
A walk through the query conditions
fn visit_greater_than( &mut self, left: Expression<'a>, right: Expression<'a> ) -> Result
fn visit_greater_than_or_equals( &mut self, left: Expression<'a>, right: Expression<'a> ) -> Result
fn visit_less_than( &mut self, left: Expression<'a>, right: Expression<'a> ) -> Result
fn visit_less_than_or_equals( &mut self, left: Expression<'a>, right: Expression<'a> ) -> Result
source§fn visit_compare(&mut self, compare: Compare<'a>) -> Result
fn visit_compare(&mut self, compare: Compare<'a>) -> Result
A comparison expression
source§fn visit_grouping(&mut self, grouping: Grouping<'a>) -> Result
fn visit_grouping(&mut self, grouping: Grouping<'a>) -> Result
A visit in the
GROUP BY
section of the queryfn visit_average(&mut self, avg: Average<'a>) -> Result
fn visit_function(&mut self, fun: Function<'a>) -> Result
fn visit_partitioning(&mut self, over: Over<'a>) -> Result
fn visit_cte(&mut self, cte: CommonTableExpression<'a>) -> Result
fn visit_comment(&mut self, comment: Cow<'a, str>) -> Result
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Postgres<'a>
impl<'a> Send for Postgres<'a>
impl<'a> Sync for Postgres<'a>
impl<'a> Unpin for Postgres<'a>
impl<'a> UnwindSafe for Postgres<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
source§impl<T> FmtForward for T
impl<T> FmtForward for T
source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where Self: Binary,
Causes
self
to use its Binary
implementation when Debug
-formatted.source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where Self: Display,
Causes
self
to use its Display
implementation when
Debug
-formatted.source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where Self: LowerExp,
Causes
self
to use its LowerExp
implementation when
Debug
-formatted.source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where Self: LowerHex,
Causes
self
to use its LowerHex
implementation when
Debug
-formatted.source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where Self: Octal,
Causes
self
to use its Octal
implementation when Debug
-formatted.source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where Self: Pointer,
Causes
self
to use its Pointer
implementation when
Debug
-formatted.source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where Self: UpperExp,
Causes
self
to use its UpperExp
implementation when
Debug
-formatted.source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where Self: UpperHex,
Causes
self
to use its UpperHex
implementation when
Debug
-formatted.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere T: ?Sized,
source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere Self: Sized,
Pipes by value. This is generally the method you want to use. Read more
source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere R: 'a,
Borrows
self
and passes that borrow into the pipe function. Read moresource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere R: 'a,
Mutably borrows
self
and passes that borrow into the pipe function. Read moresource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere
Self: Borrow<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere Self: Borrow<B>, B: 'a + ?Sized, R: 'a,
source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> Rwhere
Self: BorrowMut<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> Rwhere Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,
source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere
Self: AsRef<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere Self: AsRef<U>, U: 'a + ?Sized, R: 'a,
Borrows
self
, then passes self.as_ref()
into the pipe function.source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere
Self: AsMut<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere Self: AsMut<U>, U: 'a + ?Sized, R: 'a,
Mutably borrows
self
, then passes self.as_mut()
into the pipe
function.source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> Tap for T
impl<T> Tap for T
source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,
Immutable access to the
Borrow<B>
of a value. Read moresource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,
Mutable access to the
BorrowMut<B>
of a value. Read moresource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere
Self: AsRef<R>,
R: ?Sized,
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,
Immutable access to the
AsRef<R>
view of a value. Read moresource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,
Mutable access to the
AsMut<R>
view of a value. Read moresource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere
Self: Deref<Target = T>,
T: ?Sized,
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere Self: Deref<Target = T>, T: ?Sized,
Immutable access to the
Deref::Target
of a value. Read moresource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere
Self: DerefMut<Target = T> + Deref,
T: ?Sized,
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere Self: DerefMut<Target = T> + Deref, T: ?Sized,
Mutable access to the
Deref::Target
of a value. Read moresource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
Calls
.tap()
only in debug builds, and is erased in release builds.source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
Calls
.tap_mut()
only in debug builds, and is erased in release
builds.source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,
Calls
.tap_borrow()
only in debug builds, and is erased in release
builds.source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,
Calls
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere
Self: AsRef<R>,
R: ?Sized,
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,
Calls
.tap_ref()
only in debug builds, and is erased in release
builds.source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,
Calls
.tap_ref_mut()
only in debug builds, and is erased in release
builds.