Crate unchecked_std
source ·Expand description
Rust standard library methods with some checks removed for the sake of performance and binary size.
Modules§
- Exports everything from the crate for simplicity and to comply with
clippy::wildcard_imports
.
Traits§
- A trait for
copy_from_slice
without the length check. - A trait for
extend_from_slice
without the capacity check. - A trait for
extend_from_within
without the capacity and bounds checks. - A trait for
extend
without the capacity check. - A trait for
push_str
without the capacity check. - A trait for
push
without the capacity check.