Docs.rs
maybe-cell-0.1.1
maybe-cell 0.1.1
Docs.rs crate page
MIT
/
Apache-2.0
Links
Repository
crates.io
Source
Owners
andrewwhitehead
Dependencies
Versions
97.96%
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 unchecked
maybe_
cell
0.1.1
Module unchecked
Module Items
Structs
In crate maybe_
cell
maybe_cell
Module
unchecked
Copy item path
Source
Expand description
Data structure variants without run-time checks
Structs
ยง
Maybe
Equivalent to an
UnsafeCell<MaybeUninit<T>>
, this cell may hold uninitialized data.
Maybe
Copy
Equivalent to an
UnsafeCell<MaybeUninit<T>>
, this cell may hold uninitialized data. Unlike
Maybe<T>
this structure is suited for data types with no
Drop
implementation.