pub fn copy_from_iter_to_offset_with_align_exact_packed<T: Copy, Iter: Iterator<Item = T>, S: Slab + ?Sized>(
    src: Iter,
    dst: &mut S,
    start_offset: usize,
    min_alignment: usize
) -> Result<Option<CopyRecord>, Error>
Expand description

Like copy_from_iter_to_offset_with_align_packed except that it will return an error and no data will be copied if the supplied start_offset doesn’t meet the computed alignment requirements.