Home
last modified time | relevance | path

Searched refs:into_vec (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/rust/alloc/
H A Dslice.rs82 pub use hack::into_vec;
102 pub fn into_vec<T, A: Allocator>(b: Box<[T], A>) -> Vec<T, A> { in into_vec() function
463 pub fn into_vec<A: Allocator>(self: Box<Self, A>) -> Vec<T, A> { in into_vec() method
465 hack::into_vec(self) in into_vec()
/openbmc/linux/rust/alloc/vec/
H A Dmod.rs3418 <[T]>::into_vec(Box::new(s))
3423 crate::slice::into_vec(Box::new(s))
3466 s.into_vec() in from()