Docs.rs
fallacy-arc-0.1.1
fallacy-arc 0.1.1
Permalink
Docs.rs crate page
MIT OR Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
davidli2010
Dependencies
fallacy-alloc ^0.1.0
normal
serde ^1.0.136
normal
optional
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
fallacy_
arc
0.1.1
All Items
Crate Items
Structs
Crate
fallacy_arc
Copy item path
Source
Expand description
A library for fallible Arc.
Structs
§
Alloc
Error
The error type for allocation failure.
Arc
A thread-safe reference-counting pointer. ‘Arc’ stands for ‘Atomically Reference Counted’.
Weak
Weak
is a version of
Arc
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
<
Arc
<T>>
.