Docs.rs
manually-static-1.0.0
manually-static 1.0.0
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
Eugene-Usachev
Dependencies
Versions
85.71%
of the crate is documented
This release has been yanked, 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
manually_
static
1.0.0
All Items
Crate Items
Structs
Crate
manually_static
Copy item path
Source
Structs
ยง
Manually
Static
ManuallyStatic<T>
holds a value
T
and provides references to it with checking with
debug_assertions
.
Manually
Static
Ref
A reference to the value held by
ManuallyStatic<T>
. In debug builds, it will panic if dereferenced after the original
ManuallyStatic
has been dropped.
Manually
Static
RefMut
A mutable reference to the value held by
ManuallyStatic<T>
. In debug builds, it will panic if dereferenced after the original
ManuallyStatic
has been dropped.