Docs.rs
no-std-compat2-0.4.5
no-std-compat2 0.4.5
Permalink
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
stevefan1999-personal
Dependencies
cstr_core ^0.2.3
normal
document-features ^0.2.7
normal
hashbrown ^0.13.2
normal
libc ^0.2.97
normal
spin ^0.9.8
normal
unix_path ^1.0.1
normal
libc ^0.2.97
dev
rustc_version ^0.4.0
build
Versions
16.67%
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
☰
Module rc
Structs
?
Module
no_std_compat2
::
rc
source
·
[
−
]
Available on
non-crate feature
std
only.
Structs
Rc
A single-threaded reference-counting pointer. ‘Rc’ stands for ‘Reference Counted’.
Weak
Weak
is a version of
Rc
that holds a non-owning reference to the managed allocation. The allocation is accessed by calling
upgrade
on the
Weak
pointer, which returns an
Option
<
Rc
<T>>
.