pub struct Query;
Expand description
Shorthand for constructing any table query
Implementations
sourceimpl Query
impl Query
sourcepub fn select() -> SelectStatement
pub fn select() -> SelectStatement
Construct table SelectStatement
sourcepub fn insert() -> InsertStatement
pub fn insert() -> InsertStatement
Construct table InsertStatement
sourcepub fn update() -> UpdateStatement
pub fn update() -> UpdateStatement
Construct table UpdateStatement
sourcepub fn delete() -> DeleteStatement
pub fn delete() -> DeleteStatement
Construct table DeleteStatement
sourcepub fn with() -> WithClause
pub fn with() -> WithClause
Construct WithClause
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Query
impl Send for Query
impl Sync for Query
impl Unpin for Query
impl UnwindSafe for Query
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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