Module abi_stable::std_types::vec
source · Expand description
Contains an ffi-safe equivalent of Vec<T>
.
Structs§
- An Iterator returned by
RVec::drain
, which removes and yields all the elements in a range from theRVec<T>
. - An Iterator returned by
<RVec<T> as IntoIterator>::into_iter
, which yields all the elements from theRVec<T>
, consuming it in the process. - Ffi-safe equivalent of
std::vec::Vec
.