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