pub struct SqlTemplates {Show 26 fields
pub where: Keywords,
pub and: Keywords,
pub or: Keywords,
pub in: Keywords,
pub having: Keywords,
pub order_by: Keywords,
pub group_by: Keywords,
pub asc: Keywords,
pub desc: Keywords,
pub between: Keywords,
pub not: Keywords,
pub like: Keywords,
pub is: Keywords,
pub null: Keywords,
pub insert_into: Keywords,
pub values: Keywords,
pub limit: Keywords,
pub set: Keywords,
pub update: Keywords,
pub select: Keywords,
pub delete_from: Keywords,
pub from: Keywords,
pub as: Keywords,
pub offset: Keywords,
pub rows_fetch_next: Keywords,
pub rows_only: Keywords,
}
Expand description
Most of the SQL keywords used by the mybatis
Fields§
§where: Keywords
§and: Keywords
§or: Keywords
§in: Keywords
§having: Keywords
§order_by: Keywords
§group_by: Keywords
§asc: Keywords
§desc: Keywords
§between: Keywords
§not: Keywords
§like: Keywords
§is: Keywords
§null: Keywords
§insert_into: Keywords
§values: Keywords
§limit: Keywords
§set: Keywords
§update: Keywords
§select: Keywords
§delete_from: Keywords
§from: Keywords
§as: Keywords
§offset: Keywords
§rows_fetch_next: Keywords
§rows_only: Keywords
Trait Implementations§
Source§impl Clone for SqlTemplates
impl Clone for SqlTemplates
Source§fn clone(&self) -> SqlTemplates
fn clone(&self) -> SqlTemplates
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SqlTemplates
impl Debug for SqlTemplates
Auto Trait Implementations§
impl Freeze for SqlTemplates
impl RefUnwindSafe for SqlTemplates
impl Send for SqlTemplates
impl Sync for SqlTemplates
impl Unpin for SqlTemplates
impl UnwindSafe for SqlTemplates
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 more