pub fn right_pad_with_offset_vec( data: &[u8], offset: usize, len: usize, ) -> Cow<'_, [u8]>
Right-pads the given slice at offset with zeroes until len.
offset
len
Returns the first len bytes if it does not need padding.