pub struct FbQueryBuilder {
pub has_cursor: bool,
/* private fields */
}Fields§
§has_cursor: boolImplementations§
Trait Implementations§
Source§impl Default for FbQueryBuilder
impl Default for FbQueryBuilder
Source§impl QueryBuilder<Fb> for FbQueryBuilder
impl QueryBuilder<Fb> for FbQueryBuilder
Source§fn push_identifier(&mut self, identifier: &str) -> QueryResult<()>
fn push_identifier(&mut self, identifier: &str) -> QueryResult<()>
Quote
identifier, and add it to the end of the query being
constructed.Source§fn push_bind_param(&mut self)
fn push_bind_param(&mut self)
Add a placeholder for a bind parameter to the end of the query being
constructed.
Source§fn push_bind_param_value_only(&mut self)
fn push_bind_param_value_only(&mut self)
Increases the internal counter for bind parameters without adding the
bind parameter itself to the query
Auto Trait Implementations§
impl Freeze for FbQueryBuilder
impl RefUnwindSafe for FbQueryBuilder
impl Send for FbQueryBuilder
impl Sync for FbQueryBuilder
impl Unpin for FbQueryBuilder
impl UnwindSafe for FbQueryBuilder
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> IntoSql for T
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expression
fn into_sql<T>(self) -> Self::Expression
Convert
self to an expression for Diesel’s query builder. Read moreSource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
Convert
&self to an expression for Diesel’s query builder. Read more