Docs.rs
once-nonstatic-0.1.0
once-nonstatic 0.1.0
Permalink
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
overdrivenpotato
Dependencies
Versions
100%
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
Rust
About docs.rs
Privacy policy
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
once_
nonstatic
0.1.0
All Items
Crate Items
Structs
Crate
once_nonstatic
Copy item path
Source
Expand description
A clone of
std::sync::Once
.
Structs
ยง
Once
Like
std::sync::Once
, but relaxing the requirement of
&'static self
to
&self
on
call_once
. Access to inner state is guarded by a spinlock.