Expand description
Rust standard library methods with some checks removed for the sake of performance and binary size.
Modules§
- prelude
- Duplicate exports in
prelude
to comply withclippy::wildcard_imports
.
Traits§
- Copy
From Slice Unchecked - A trait for
copy_from_slice
without the length check. - Extend
From Slice Unchecked - A trait for
extend_from_slice
without the capacity check. - Extend
From Within Unchecked - A trait for
extend_from_within
without the capacity and bounds checks. - Extend
Unchecked - A trait for
extend
without the capacity check. - Push
StrUnchecked - A trait for
push_str
without the capacity check. - Push
Unchecked - A trait for
push
without the capacity check.