pub struct FbSelectStatementSyntax;Trait Implementations§
Source§impl<'a, ST, QS, GB> QueryFragment<Fb, FbSelectStatementSyntax> for BoxedSelectStatement<'a, ST, QS, Fb, GB>
impl<'a, ST, QS, GB> QueryFragment<Fb, FbSelectStatementSyntax> for BoxedSelectStatement<'a, ST, QS, Fb, GB>
Source§fn walk_ast<'b>(&'b self, out: AstPass<'_, 'b, Fb>) -> QueryResult<()>
fn walk_ast<'b>(&'b self, out: AstPass<'_, 'b, Fb>) -> QueryResult<()>
Walk over this
QueryFragment for all passes. Read moreSource§fn to_sql(
&self,
out: &mut <DB as Backend>::QueryBuilder,
backend: &DB,
) -> Result<(), Error>
fn to_sql( &self, out: &mut <DB as Backend>::QueryBuilder, backend: &DB, ) -> Result<(), Error>
Converts this
QueryFragment to its SQL representation. Read moreSource§fn collect_binds<'b>(
&'b self,
out: &mut <DB as HasBindCollector<'b>>::BindCollector,
metadata_lookup: &mut <DB as TypeMetadata>::MetadataLookup,
backend: &'b DB,
) -> Result<(), Error>
fn collect_binds<'b>( &'b self, out: &mut <DB as HasBindCollector<'b>>::BindCollector, metadata_lookup: &mut <DB as TypeMetadata>::MetadataLookup, backend: &'b DB, ) -> Result<(), Error>
Serializes all bind parameters in this query. Read more
Source§impl<F, S, D, W, O, LOf, G, H, LC> QueryFragment<Fb, FbSelectStatementSyntax> for SelectStatement<F, S, D, W, O, LOf, G, H, LC>where
S: QueryFragment<Fb>,
F: QueryFragment<Fb>,
D: QueryFragment<Fb>,
W: QueryFragment<Fb>,
O: QueryFragment<Fb>,
LOf: QueryFragment<Fb>,
G: QueryFragment<Fb>,
H: QueryFragment<Fb>,
LC: QueryFragment<Fb>,
impl<F, S, D, W, O, LOf, G, H, LC> QueryFragment<Fb, FbSelectStatementSyntax> for SelectStatement<F, S, D, W, O, LOf, G, H, LC>where
S: QueryFragment<Fb>,
F: QueryFragment<Fb>,
D: QueryFragment<Fb>,
W: QueryFragment<Fb>,
O: QueryFragment<Fb>,
LOf: QueryFragment<Fb>,
G: QueryFragment<Fb>,
H: QueryFragment<Fb>,
LC: QueryFragment<Fb>,
Source§fn walk_ast<'b>(&'b self, out: AstPass<'_, 'b, Fb>) -> QueryResult<()>
fn walk_ast<'b>(&'b self, out: AstPass<'_, 'b, Fb>) -> QueryResult<()>
Walk over this
QueryFragment for all passes. Read moreSource§fn to_sql(
&self,
out: &mut <DB as Backend>::QueryBuilder,
backend: &DB,
) -> Result<(), Error>
fn to_sql( &self, out: &mut <DB as Backend>::QueryBuilder, backend: &DB, ) -> Result<(), Error>
Converts this
QueryFragment to its SQL representation. Read moreSource§fn collect_binds<'b>(
&'b self,
out: &mut <DB as HasBindCollector<'b>>::BindCollector,
metadata_lookup: &mut <DB as TypeMetadata>::MetadataLookup,
backend: &'b DB,
) -> Result<(), Error>
fn collect_binds<'b>( &'b self, out: &mut <DB as HasBindCollector<'b>>::BindCollector, metadata_lookup: &mut <DB as TypeMetadata>::MetadataLookup, backend: &'b DB, ) -> Result<(), Error>
Serializes all bind parameters in this query. Read more
Auto Trait Implementations§
impl Freeze for FbSelectStatementSyntax
impl RefUnwindSafe for FbSelectStatementSyntax
impl Send for FbSelectStatementSyntax
impl Sync for FbSelectStatementSyntax
impl Unpin for FbSelectStatementSyntax
impl UnwindSafe for FbSelectStatementSyntax
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