Docs.rs
typed-sql-0.2.1
typed-sql 0.2.1
Permalink
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
matthunz
Dependencies
async-trait ^0.1.50
normal
sqlx ^0.5.5
normal
optional
typed-sql-derive ^0.1.2
normal
Versions
8.97%
of the crate is documented
Platform
i686-pc-windows-msvc
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
typed_
sql
0.2.1
Predicate
Required Methods
write_predicate
Implementors
In typed_
sql::
query::
predicate
typed_sql
::
query
::
predicate
Trait
Predicate
Copy item path
Source
pub trait Predicate { // Required method fn
write_predicate
(&self, sql: &mut
String
); }
Required Methods
§
Source
fn
write_predicate
(&self, sql: &mut
String
)
Implementors
§
Source
§
impl<H, T>
Predicate
for
And
<H, T>
where H:
Predicate
, T:
Predicate
,
Source
§
impl<H, T>
Predicate
for
Or
<H, T>
where H:
Predicate
, T:
Predicate
,
Source
§
impl<T, A, O>
Predicate
for
Op
<T, A,
Bind
, O>
where T:
Table
, O:
Operator
,
Source
§
impl<T, A, U, O>
Predicate
for
Op
<T, A, U, O>
where T:
Table
, U:
Primitive
, O:
Operator
,
Source
§
impl<T, T2, A, O>
Predicate
for
Op
<T, A,
Field
<T2, A>, O>
where T:
Table
, T2:
Table
, O:
Operator
,