Docs.rs
recursive_variadic-0.1.0
recursive_variadic 0.1.0
Docs.rs crate page
Links
crates.io
Source
Owners
rphmeier
Dependencies
Versions
80%
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
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
recursive_
variadic
0.1.0
Empty
Trait Implementations
RecursiveVariadic
In crate recursive_
variadic
recursive_variadic
Type Alias
Empty
Copy item path
Source
pub type Empty =
()
;
Expand description
The base case for recursive variadics: no fields.
Trait Implementations
§
Source
§
impl
RecursiveVariadic
for
Empty
Source
§
fn
get
<N:
Key
>(&self) ->
Option
<&N::
Value
>
Try to get the value for N.
Source
§
fn
get_mut
<N:
Key
>(&mut self) ->
Option
<&mut N::
Value
>
Try to get the value for N mutably.
Source
§
fn
and
<N:
Key
>(self, val: N::
Value
) ->
Entry
<N, Self>
where Self:
Sized
,
Add a key-value pair to this.
Source
§
fn
and_default
<N:
Key
>(self) ->
Entry
<N, Self>
where N::
Value
:
Default
, Self:
Sized
,
Add the default value for N