Struct mybatis_sql::template::SqlTemplates
source · [−]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
sourceimpl Clone for SqlTemplates
impl Clone for SqlTemplates
sourcefn clone(&self) -> SqlTemplates
fn clone(&self) -> SqlTemplates
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SqlTemplates
impl Debug for SqlTemplates
Auto Trait Implementations
impl RefUnwindSafe for SqlTemplates
impl Send for SqlTemplates
impl Sync for SqlTemplates
impl Unpin for SqlTemplates
impl UnwindSafe for SqlTemplates
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more