pub struct Mysql<'a> { /* private fields */ }
Expand description
A visitor to generate queries for the MySQL database.
The returned parameter values can be used directly with the mysql crate.
Trait Implementations§
Source§impl<'a> Visitor<'a> for Mysql<'a>
impl<'a> Visitor<'a> for Mysql<'a>
Source§fn visit_sub_selection(&mut self, query: SelectQuery<'a>) -> Result
fn visit_sub_selection(&mut self, query: SelectQuery<'a>) -> Result
MySql will error if a Update
or Delete
query has a subselect
that references a table that is being updated or deleted
to get around that, we need to wrap the table in a tmp table name
UPDATE crabbywilderness
SET val
= ?
WHERE (crabbywilderness
.id
)
IN (SELECT t1
.id
FROM crabbywilderness
AS t1
INNER JOIN breakabletomatoes
AS j
ON j
.id
= t1
.id2
)
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>>)>
fn build<Q>(query: Q) -> Result<(String, Vec<Value<'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 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
statementfn visit_upsert(&mut self, _update: Update<'a>) -> Result
Source§fn parameter_substitution(&mut self) -> Result
fn parameter_substitution(&mut self) -> Result
What to use to substitute a parameter in the query.
Source§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 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_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_array_contains( &mut self, left: Expression<'a>, right: Expression<'a>, not: bool, ) -> Result
fn visit_json_type_equals( &mut self, left: Expression<'a>, json_type: JsonType<'a>, not: bool, ) -> Result
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
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_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_unquote(&mut self, json_unquote: JsonUnquote<'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 querySource§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) -> 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_update_set(&mut self, update: Update<'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 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_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_column(&mut self, column: Column<'a>) -> Result
fn visit_column(&mut self, column: Column<'a>) -> Result
A database column 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_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_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_concat(&mut self, concat: Concat<'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> Freeze for Mysql<'a>
impl<'a> RefUnwindSafe for Mysql<'a>
impl<'a> Send for Mysql<'a>
impl<'a> Sync for Mysql<'a>
impl<'a> Unpin for Mysql<'a>
impl<'a> UnwindSafe for Mysql<'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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§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) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
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) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
Mutably borrows
self
, then passes self.as_mut()
into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
Borrows
self
, then passes self.deref()
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)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Immutable access to the
Borrow<B>
of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
Mutable access to the
BorrowMut<B>
of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
Immutable access to the
AsRef<R>
view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
Mutable access to the
AsMut<R>
view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Immutable access to the
Deref::Target
of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
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)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
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)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
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)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
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)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
Calls
.tap_ref_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
Calls
.tap_deref()
only in debug builds, and is erased in release
builds.