pub trait CloneIntoOther<T = Self>where
T: ?Sized,{
// Required method
fn clone_into_other(&self, other: &mut T);
}Expand description
Clone self into a potentially different collection.
pub trait CloneIntoOther<T = Self>where
T: ?Sized,{
// Required method
fn clone_into_other(&self, other: &mut T);
}Clone self into a potentially different collection.