👎Deprecated since 0.3.4: this crate is deprecated without replacement
Expand description
This crate is deprecated. You can now write:
#[cfg(all(feature = "alloc", not(feature = "std")))]
extern crate alloc;
#[cfg(feature = "std")]
extern crate std as alloc;
Modules§
- alloc
- Memory allocation APIs
- borrow
- A module for working with borrowed data.
- boxed
- The
Box<T>
type for heap allocation. - collections
- Collection types.
- ffi
- Utilities related to FFI bindings.
- fmt
- Utilities for formatting and printing
String
s. - rc
- Single-threaded reference-counting pointers. ‘Rc’ stands for ‘Reference Counted’.
- slice
- Utilities for the slice primitive type.
- str
- Utilities for the
str
primitive type. - string
- A UTF-8–encoded, growable string.
- sync
- Thread-safe reference-counting pointers.
- task
- Types and Traits for working with asynchronous tasks.
- vec
- A contiguous growable array type with heap-allocated contents, written
Vec<T>
. - bstr
Experimental - The
ByteStr
andByteString
types and trait implementations.