macro_rules! save_spare {
($spare:expr, $orig:expr) => { ... };
}Expand description
Save the changes to GenericVec::spare_capacity_mut
$orig - a mutable reference to a GenericVec
$spare - the SliceVec that was obtained from [$orig.spare_capacity_mut()]
ยงSafety
$spare should be the SliceVec returned by $orig.spare_capacity_mut()