Docs.rs
platform-data-1.0.0
platform-data 1.0.0
Docs.rs crate page
Unlicense
Links
Homepage
Repository
crates.io
Source
Owners
uselessgoddess
konard
Dependencies
beef ^0.5.2
normal
funty ^2.0.0
normal
thiserror ^2.0.18
normal
quickcheck ^1.1.0
dev
quickcheck_macros ^1.2.0
dev
Versions
9.3%
of the crate is documented
Go to latest version
Platform
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
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
Skip to main content
ToQuery
platform_
data
1.0.0
ToQuery
Required Methods
to_query
Implementations on Foreign Types
&'a [T]
Vec<T>
[T; L]
[T]
Implementors
In crate platform_
data
platform_data
Trait
ToQuery
Copy item path
Source
pub trait ToQuery<T:
Clone
> { // Required method fn
to_query
(&self) ->
Query
<'_, T>; }
Required Methods
§
Source
fn
to_query
(&self) ->
Query
<'_, T>
Implementations on Foreign Types
§
Source
§
impl<'a, T:
Clone
>
ToQuery
<T> for &'a
[T]
Source
§
fn
to_query
(&self) ->
Query
<'a, T>
Source
§
impl<T:
Clone
>
ToQuery
<T> for
[T]
Source
§
fn
to_query
(&self) ->
Query
<'_, T>
Source
§
impl<T:
Clone
>
ToQuery
<T> for
Vec
<T>
Source
§
fn
to_query
(&self) ->
Query
<'_, T>
Source
§
impl<T:
Clone
, const L:
usize
>
ToQuery
<T> for
[T; L]
Source
§
fn
to_query
(&self) ->
Query
<'_, T>
Implementors
§
Source
§
impl<T:
Clone
>
ToQuery
<T> for
Query
<'_, T>