Docs.rs
defaultmap-0.7.0
defaultmap 0.7.0
Permalink
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
JelteF
Dependencies
derive_more ^2
normal
dyn-clone ^1.0.13
normal
serde ^1.0.183
normal
optional
serde_json ^1.0.105
dev
Versions
71.43%
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
DefaultFn
defaultmap
0.7.0
Default
Fn
Required Methods
call
Trait Implementations
Default
Implementors
In crate defaultmap
defaultmap
Trait
Default
Fn
Copy item path
Source
pub trait DefaultFn<V>:
DynClone
{ // Required method fn
call
(&self) -> V; }
Required Methods
§
Source
fn
call
(&self) -> V
Trait Implementations
§
Source
§
impl<V>
Default
for
Box
<dyn
DefaultFn
<V>>
where V:
Default
,
Source
§
fn
default
() -> Self
Returns the “default value” for a type.
Read more
Implementors
§
Source
§
impl<F, V>
DefaultFn
<V> for F
where F:
Fn
() -> V +
Clone
,