Module rustc_data_structures::array_vec [−][src]
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
A stack-allocated vector, allowing storage of N elements on the stack.
Re-exports
use std::marker::Unsize; |
use std::iter::Extend; |
use std::ptr; |
use std::ptr::drop_in_place; |
use std::ptr::NonNull; |
use std::ops::Deref; |
use std::ops::DerefMut; |
use std::ops::Range; |
use std::hash::Hash; |
use std::hash::Hasher; |
use std::slice; |
use std::fmt; |
use std::mem; |
use std::mem::ManuallyDrop; |
use std::ops::Bound::Excluded; |
use std::ops::Bound::Included; |
use std::ops::Bound::Unbounded; |
use std::ops::RangeBounds; |
Structs
ArrayVec |
[ Experimental ]
|
Drain |
[ Experimental ]
|
Iter |
[ Experimental ]
|
Traits
Array |
[ Experimental ]
|