Docs.rs
typed-sql-0.2.1
typed-sql 0.2.1
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
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
typed_
sql
0.2.1
Write
Queryable
Required Methods
write_query
Implementors
In typed_
sql::
query::
select::
queryable
typed_sql
::
query
::
select
::
queryable
Trait
WriteQueryable
Copy item path
Source
pub trait WriteQueryable { // Required method fn
write_query
(&self, sql: &mut
String
); }
Required Methods
§
Source
fn
write_query
(&self, sql: &mut
String
)
Implementors
§
Source
§
impl
WriteQueryable
for
Count
<
()
>
Source
§
impl
WriteQueryable
for
Count
<
WildCard
>
Source
§
impl
WriteQueryable
for
WildCard
Source
§
impl<Q:
Queryable
+ ?
Sized
>
WriteQueryable
for
QueryableWriter
<Q>
Source
§
impl<T:
Table
, A>
WriteQueryable
for
Count
<
Field
<T, A>>