Docs.rs
auri-0.2.0
auri 0.2.0
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Repository
crates.io
Source
Owners
pflanze
Dependencies
ahtml ^0.8
normal
anyhow ^1.0.14
normal
chj-util ^0.2.1
normal
itertools ^0.10
normal
kstring ^1.0
normal
pct-str ^2.0.0
normal
thiserror ^1.0
normal
Versions
28.89%
of the crate is documented
Platform
i686-unknown-linux-gnu
x86_64-apple-darwin
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
ToVecKeyVal
auri
0.2.0
ToVec
KeyVal
Required Methods
to_vec_key_val
Implementations on Foreign Types
&[(&str, &str)]
&[(KString, KString)]
&[(String, String)]
Vec<(&str, &str)>
Vec<(String, String)>
[(&str, &str); N]
[(KString, KString); N]
Implementors
In crate auri
auri
Trait
ToVec
KeyVal
Copy item path
Source
pub trait ToVecKeyVal { // Required method fn
to_vec_key_val
(self) ->
Vec
<(
KString
,
KString
)>; }
Required Methods
§
Source
fn
to_vec_key_val
(self) ->
Vec
<(
KString
,
KString
)>
Implementations on Foreign Types
§
Source
§
impl
ToVecKeyVal
for &[(&
str
, &
str
)]
Source
§
fn
to_vec_key_val
(self) ->
Vec
<(
KString
,
KString
)>
Source
§
impl
ToVecKeyVal
for &[(
String
,
String
)]
Source
§
fn
to_vec_key_val
(self) ->
Vec
<(
KString
,
KString
)>
Source
§
impl
ToVecKeyVal
for &[(
KString
,
KString
)]
Source
§
fn
to_vec_key_val
(self) ->
Vec
<(
KString
,
KString
)>
Source
§
impl
ToVecKeyVal
for
Vec
<(&
str
, &
str
)>
Source
§
fn
to_vec_key_val
(self) ->
Vec
<(
KString
,
KString
)>
Source
§
impl
ToVecKeyVal
for
Vec
<(
String
,
String
)>
Source
§
fn
to_vec_key_val
(self) ->
Vec
<(
KString
,
KString
)>
Source
§
impl<const N:
usize
>
ToVecKeyVal
for [(&
str
, &
str
);
N
]
Source
§
fn
to_vec_key_val
(self) ->
Vec
<(
KString
,
KString
)>
Source
§
impl<const N:
usize
>
ToVecKeyVal
for [(
KString
,
KString
);
N
]
Source
§
fn
to_vec_key_val
(self) ->
Vec
<(
KString
,
KString
)>
Implementors
§