Home
last modified time | relevance | path

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

/openbmc/linux/rust/alloc/
H A Dslice.rs792 fn clone_into(&self, target: &mut Vec<T, A>); in clone_into() method
797 default fn clone_into(&self, target: &mut Vec<T, A>) { in clone_into() method
813 fn clone_into(&self, target: &mut Vec<T, A>) { in clone_into() method
833 fn clone_into(&self, target: &mut Vec<T>) { in clone_into() method
834 SpecCloneIntoVec::clone_into(self, target); in clone_into()
/openbmc/linux/rust/alloc/vec/
H A Dmod.rs2887 crate::slice::SpecCloneIntoVec::clone_into(other.as_slice(), self); in clone_from()