Docs.rs
leon-3.0.2
leon 3.0.2
Permalink
Docs.rs crate page
Apache-2.0
OR
MIT
Links
Repository
crates.io
Source
Owners
passcod
NobodyXu
github:cargo-bins:binstall
Dependencies
clap ^4.5.20
normal
optional
miette ^7.2.0
normal
optional
thiserror ^2.0.1
normal
Versions
43.75%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
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
leon
3.0.2
Values
Required Methods
get_value
Implementations on Foreign Types
&T
&[(K, V)]
Arc<T>
BTreeMap<K, V>
HashMap<K, V, S>
Rc<T>
Vec<(K, V)>
[(K, V); N]
[(K, V)]
Implementors
In crate leon
leon
Trait
Values
Copy item path
Source
pub trait Values { // Required method fn
get_value
(&self, key: &
str
) ->
Option
<
Cow
<'_,
str
>>; }
Required Methods
§
Source
fn
get_value
(&self, key: &
str
) ->
Option
<
Cow
<'_,
str
>>
Implementations on Foreign Types
§
Source
§
impl<K, V>
Values
for &[
(K, V)
]
where K:
AsRef
<
str
>, V:
AsRef
<
str
>,
Source
§
fn
get_value
(&self, key: &
str
) ->
Option
<
Cow
<'_,
str
>>
Source
§
impl<K, V>
Values
for
BTreeMap
<K, V>
where K:
Borrow
<
str
> +
Ord
, V:
AsRef
<
str
>,
Source
§
fn
get_value
(&self, key: &
str
) ->
Option
<
Cow
<'_,
str
>>
Source
§
impl<K, V>
Values
for
Vec
<
(K, V)
>
where K:
AsRef
<
str
>, V:
AsRef
<
str
>,
Source
§
fn
get_value
(&self, key: &
str
) ->
Option
<
Cow
<'_,
str
>>
Source
§
impl<K, V>
Values
for [
(K, V)
]
where K:
AsRef
<
str
>, V:
AsRef
<
str
>,
Source
§
fn
get_value
(&self, key: &
str
) ->
Option
<
Cow
<'_,
str
>>
Source
§
impl<K, V, S>
Values
for
HashMap
<K, V, S>
where K:
Borrow
<
str
> +
Eq
+
Hash
, V:
AsRef
<
str
>, S:
BuildHasher
,
Source
§
fn
get_value
(&self, key: &
str
) ->
Option
<
Cow
<'_,
str
>>
Source
§
impl<K, V, const N:
usize
>
Values
for [
(K, V)
;
N
]
where K:
AsRef
<
str
>, V:
AsRef
<
str
>,
Source
§
fn
get_value
(&self, key: &
str
) ->
Option
<
Cow
<'_,
str
>>
Source
§
impl<T>
Values
for
&T
where T:
Values
,
Source
§
fn
get_value
(&self, key: &
str
) ->
Option
<
Cow
<'_,
str
>>
Source
§
impl<T>
Values
for
Rc
<T>
where T:
Values
,
Source
§
fn
get_value
(&self, key: &
str
) ->
Option
<
Cow
<'_,
str
>>
Source
§
impl<T>
Values
for
Arc
<T>
where T:
Values
,
Source
§
fn
get_value
(&self, key: &
str
) ->
Option
<
Cow
<'_,
str
>>
Implementors
§
Source
§
impl<F>
Values
for
ValuesFn
<F>
where F:
Fn
(&
str
) ->
Option
<
Cow
<'static,
str
>>,