pub struct subsystem;
Trait Implementations
sourceimpl Expression for subsystem
impl Expression for subsystem
type SqlType = Text
type SqlType = Text
The type that this expression represents in SQL
sourceimpl<DB> QueryFragment<DB> for subsystem where
DB: Backend,
<table as QuerySource>::FromClause: QueryFragment<DB>,
impl<DB> QueryFragment<DB> for subsystem where
DB: Backend,
<table as QuerySource>::FromClause: QueryFragment<DB>,
sourcefn walk_ast(&self, out: AstPass<'_, DB>) -> QueryResult<()>
fn walk_ast(&self, out: AstPass<'_, DB>) -> QueryResult<()>
Walk over this QueryFragment
for all passes. Read more
fn to_sql(&self, out: &mut <DB as Backend>::QueryBuilder) -> Result<(), Error>
fn to_sql(&self, out: &mut <DB as Backend>::QueryBuilder) -> Result<(), Error>
Converts this QueryFragment
to its SQL representation. Read more
fn collect_binds(
&self,
out: &mut <DB as Backend>::BindCollector,
metadata_lookup: &<DB as TypeMetadata>::MetadataLookup
) -> Result<(), Error>
fn collect_binds(
&self,
out: &mut <DB as Backend>::BindCollector,
metadata_lookup: &<DB as TypeMetadata>::MetadataLookup
) -> Result<(), Error>
Serializes all bind parameters in this query. Read more
fn is_safe_to_cache_prepared(&self) -> Result<bool, Error>
fn is_safe_to_cache_prepared(&self) -> Result<bool, Error>
Is this query safe to store in the prepared statement cache? Read more
sourceimpl QueryId for subsystem
impl QueryId for subsystem
sourceconst HAS_STATIC_QUERY_ID: bool = true
const HAS_STATIC_QUERY_ID: bool = true
Can the SQL generated by Self
be uniquely identified by its type? Read more
impl<QS> AppearsOnTable<QS> for subsystem where
QS: AppearsInFromClause<table, Count = Once>,
impl Copy for subsystem
impl NonAggregate for subsystem
impl SelectableExpression<table> for subsystem
Auto Trait Implementations
impl RefUnwindSafe for subsystem
impl Send for subsystem
impl Sync for subsystem
impl Unpin for subsystem
impl UnwindSafe for subsystem
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