Docs.rs
no-std-async-1.1.2
no-std-async 1.1.2
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
lylythechosenone
Dependencies
pin-list ^0.1.0
normal
pin-project ^1.1.5
normal
spin ^0.9.8
normal
pollster ^0.3.0
dev
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
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
no_
std_
async
1.1.2
Module mutex
Module Items
Structs
In crate no_
std_
async
no_std_async
Module
mutex
Copy item path
Source
Expand description
Auxiliary types for the
Mutex
type
Structs
ยง
Guard
A guard that provides mutable access to the data inside of a
Mutex
. The data can be accessed using the
Deref
and
DerefMut
implementations.
Mutex
An async mutex. This is similar to the
Mutex
type in the standard library, but it is async.