Docs.rs
rquery-orm-1.0.0
rquery-orm 1.0.0
Permalink
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
LuigimonSoft
Dependencies
anyhow ^1
normal
async-trait ^0.1
normal
chrono ^0.4
normal
futures ^0.3
normal
native-tls ^0.2
normal
postgres-native-tls ^0.5
normal
regex ^1
normal
rquery-orm-macros ^1.0.0
normal
rust_decimal ^1
normal
thiserror ^2.0.16
normal
tiberius ^0.12.3
normal
tokio ^1
normal
tokio-postgres ^0.7
normal
tokio-util ^0.7
normal
uuid ^1
normal
tokio ^1
dev
Versions
0%
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
ToParam
rquery_
orm
1.0.0
ToParam
Required Methods
to_param
Implementations on Foreign Types
&'a str
Decimal
NaiveDateTime
Option<T>
String
Uuid
Vec<u8>
bool
i32
i64
Implementors
In rquery_
orm::
query
rquery_orm
::
query
Trait
ToParam
Copy item path
Source
pub trait ToParam { // Required method fn
to_param
(self) ->
SqlParam
; }
Required Methods
§
Source
fn
to_param
(self) ->
SqlParam
Implementations on Foreign Types
§
Source
§
impl
ToParam
for
bool
Source
§
fn
to_param
(self) ->
SqlParam
Source
§
impl
ToParam
for
i32
Source
§
fn
to_param
(self) ->
SqlParam
Source
§
impl
ToParam
for
i64
Source
§
fn
to_param
(self) ->
SqlParam
Source
§
impl
ToParam
for
String
Source
§
fn
to_param
(self) ->
SqlParam
Source
§
impl
ToParam
for
Vec
<
u8
>
Source
§
fn
to_param
(self) ->
SqlParam
Source
§
impl
ToParam
for
NaiveDateTime
Source
§
fn
to_param
(self) ->
SqlParam
Source
§
impl
ToParam
for
Decimal
Source
§
fn
to_param
(self) ->
SqlParam
Source
§
impl
ToParam
for
Uuid
Source
§
fn
to_param
(self) ->
SqlParam
Source
§
impl<'a>
ToParam
for &'a
str
Source
§
fn
to_param
(self) ->
SqlParam
Source
§
impl<T:
ToParam
>
ToParam
for
Option
<T>
Source
§
fn
to_param
(self) ->
SqlParam
Implementors
§