Docs.rs
std-shims-0.1.5
std-shims 0.1.5
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
kayabaNerve
Dependencies
hashbrown ^0.16
normal
rustversion ^1
normal
spin ^0.10
normal
Versions
16.67%
of the crate is documented
Go to latest version
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
Module sync
std_
shims
0.1.5
Module sync
Module Items
Modules
Structs
In crate std_
shims
std_shims
Module
sync
Copy item path
Source
Modules
§
atomic
Atomic types
Structs
§
Arc
A thread-safe reference-counting pointer. ‘Arc’ stands for ‘Atomically Reference Counted’.
Lazy
Lock
A value which is initialized on the first access.
Mutex
Mutex
Guard
An RAII implementation of a “scoped lock” of a mutex. When this structure is dropped (falls out of scope), the lock will be unlocked.
Weak
Weak
is a version of
Arc
that holds a non-owning reference to the managed allocation.
Exclusive
Experimental
Exclusive
provides only
mutable
access, also referred to as
exclusive
access to the underlying value. It provides no
immutable
, or
shared
access to the underlying value.
Unique
Arc
Experimental
A uniquely owned
Arc
.